chore(nvim): add wildignore options

This commit is contained in:
Stefan Imhoff
2022-08-10 10:41:40 +02:00
parent b19616ab49
commit 68cfba135f

View File

@@ -62,9 +62,12 @@ end
-- Add dashes to words -- Add dashes to words
vim.opt.iskeyword:append("-") vim.opt.iskeyword:append("-")
-- Don"t delete the word, but put a $ to the end till exit the mode -- Dont delete the word, but put a $ to the end till exit the mode
vim.opt.cpoptions:append("$") vim.opt.cpoptions:append("$")
-- Wildignore
vim.opt.wildignore:append({ "*/node_modules/*" })
vim.opt.path:append("**") vim.opt.path:append("**")
vim.opt.complete:append({ "i", "k", "s", "kspell" }) vim.opt.complete:append({ "i", "k", "s", "kspell" })