6 lines
261 B
Lua
6 lines
261 B
Lua
vim.diagnostic.config({ virtual_lines = true })
|
|
vim.diagnostic.config({ virtual_text = true })
|
|
vim.o.undofile = true
|
|
vim.o.undodir = vim.fn.expand("~/.local/state/nvim/undo")
|
|
vim.diagnostic.config({ signs = false })
|
|
vim.print("loaded extra config.lua file ;)")
|