1
0
Fork 0

nvim: Migrate configuration to lua and built-in plugin manager

This commit is contained in:
Olli 2026-04-19 12:53:37 +02:00
commit 6440203958
26 changed files with 453 additions and 616 deletions

View file

@ -0,0 +1,11 @@
vim.lsp.config("typos_lsp", {
settings = {
filetypes = {
'java',
'go'
},
},
init_options = {
diagnosticSeverity = "Hint",
}
})