config: nvim: cleanup wildignore
This commit is contained in:
parent
05f3e283db
commit
0bcdd60bb3
1 changed files with 8 additions and 1 deletions
|
|
@ -11,7 +11,14 @@ opt.clipboard = 'unnamedplus' -- copy/paste to and from system clipboard
|
||||||
|
|
||||||
opt.wildmode = 'list:longest,full'
|
opt.wildmode = 'list:longest,full'
|
||||||
opt.wildignorecase = true
|
opt.wildignorecase = true
|
||||||
opt.wildignore = '*.o,*.d,*.so,*.class,*.aux,*.log,*.out,*.toc,*.pdf,*.pyc'
|
-- ignore C/C++ objects and other build files
|
||||||
|
opt.wildignore = '*.o,*.d,*.so,*.out'
|
||||||
|
-- ignore java classes
|
||||||
|
opt.wildignore:append '*.class'
|
||||||
|
-- ignore python cache files
|
||||||
|
opt.wildignore:append '*.pyc'
|
||||||
|
-- ignore tex-related build files
|
||||||
|
opt.wildignore:append '*.aux,*.bcf,*.lof,*.lol,*.lot,*.rubbercache,*.toc,*.pdf'
|
||||||
|
|
||||||
opt.fileformats = 'unix,dos' -- use identical lineendings for all platforms
|
opt.fileformats = 'unix,dos' -- use identical lineendings for all platforms
|
||||||
opt.secure = true -- disable autocmd for security reasons
|
opt.secure = true -- disable autocmd for security reasons
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue