nvim: lots of random lsps and coloring configuration

This commit is contained in:
2025-06-20 19:28:33 +03:00
parent 6982d8815a
commit 126ba234e7
8 changed files with 87 additions and 48 deletions

View File

@ -3,11 +3,13 @@ return {
"neovim/nvim-lspconfig",
config = function()
local lsp = require("lspconfig")
lsp.pylsp.setup({})
-- lsp.pylsp.setup({})
lsp.pyright.setup({})
lsp.gopls.setup({})
lsp.rust_analyzer.setup({})
lsp.clangd.setup({})
lsp.ts_ls.setup({})
lsp.gleam.setup({})
lsp.lua_ls.setup({
settings = {
Lua = {
@ -27,7 +29,7 @@ return {
},
})
lsp.helm_ls.setup({
filetypes= { "helm", "yaml" },
filetypes = { "helm", "yaml" },
})
end,
},