initial commit

This commit is contained in:
2026-03-08 14:37:55 +00:00
commit 4da672cbc7
62 changed files with 3460 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
return {
"neovim/nvim-lspconfig",
config = function()
vim.diagnostic.config({
virtual_text = true,
signs = true,
update_in_insert = false,
underline = true,
severity_sort = true,
float = {
border = "rounded",
source = "always",
},
})
end,
}