config: nvim: wildignore -= ".d" to allow completion of respectively suffixed directories

This commit is contained in:
Thomas Preisner 2023-03-30 20:48:34 +02:00
parent 99f0c2df2d
commit 355ae60ac3

View file

@ -12,7 +12,7 @@ opt.clipboard = 'unnamedplus' -- copy/paste to and from system clipboard
opt.wildmode = 'list:longest,full'
opt.wildignorecase = true
-- ignore C/C++ objects and other build files
opt.wildignore = '*.o,*.d,*.so,*.out'
opt.wildignore = '*.o,*.so,*.out'
-- ignore java classes
opt.wildignore:append '*.class'
-- ignore python cache files