Updated neovim config for v0.12

This commit is contained in:
Jonny Barnes 2026-05-31 20:33:23 +01:00
commit d3b54ea921
No known key found for this signature in database
6 changed files with 33 additions and 26 deletions

View file

@ -0,0 +1,18 @@
local sev = vim.diagnostic.severity
vim.diagnostic.config({
severity_sort = true,
update_in_insert = false,
float = {
border = 'rounded',
source = true,
},
signs = {
text = {
[sev.ERROR] = 'E',
[sev.WARN] = 'W',
[sev.INFO] = 'I',
[sev.HINT] = 'H',
},
},
})