add proper lsp support for nvim

This commit is contained in:
insects 2025-04-10 16:06:44 +02:00
parent 5f9abcb29a
commit 4e1fba9299
3 changed files with 72 additions and 3 deletions

View file

@ -1,5 +1,19 @@
-- Base plugins and libraries
return {
"nvim-lua/plenary.nvim"
"nvim-lua/plenary.nvim",
{
"folke/snacks.nvim",
priority = 1000, -- needs to be set up early
lazy = false,
opts = {
bigfiles = { enabled = true },
dashboard = { enabled = true },
indent = { enabled = true, animate = { enabled = false } },
input = { enabled = true },
lazygit = { enabled = true },
quickfile = { enabled = true },
statuscolumn = { enabled = true }
}
}
}