Adding neodev plugin for better vim lsp

Signed-off-by: Taken <taken@mairimashita.org>
This commit is contained in:
2023-09-18 19:27:43 +02:00
parent 44e4e8addf
commit 0bb96dc00c
3 changed files with 15 additions and 5 deletions

View File

@@ -21,10 +21,10 @@ opt.softtabstop = 4
opt.shiftwidth = 4
opt.expandtab = true
vim.opt.swapfile = false
vim.opt.backup = false
vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir"
vim.opt.undofile = true
opt.swapfile = false
opt.backup = false
opt.undofile = true
opt.undodir = vim.fn.expand("~") .. "/.vim/undodir"
opt.smartindent = true
opt.wrap = false