diff options
| author | Anhgelus Morhtuuzh <william@herges.fr> | 2026-01-29 09:41:49 +0100 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <william@herges.fr> | 2026-01-29 09:41:49 +0100 |
| commit | 1d4d3ecd3ffefa199a01e85559ff4f2c22ae2eba (patch) | |
| tree | b7defef5b6cd5c5678b74d0dec1185ed49728e5d /config/nvim/lua/plugins | |
| parent | 456724d626a858e87b8dad60eec23f53bafd65b8 (diff) | |
feat(nvim): install more lsp
Diffstat (limited to 'config/nvim/lua/plugins')
| -rw-r--r-- | config/nvim/lua/plugins/lsp.lua | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/config/nvim/lua/plugins/lsp.lua b/config/nvim/lua/plugins/lsp.lua index 184426c..ae32198 100644 --- a/config/nvim/lua/plugins/lsp.lua +++ b/config/nvim/lua/plugins/lsp.lua @@ -2,9 +2,9 @@ return { { "neovim/nvim-lspconfig", config = function() - local lspconfig = require("lspconfig") + -- local lspconfig = require("lspconfig") - lspconfig.pylsp.setup({}) + -- lspconfig.pylsp.setup({}) end, }, { "mason-org/mason.nvim", opts = {} }, @@ -16,11 +16,24 @@ return { }, opts = { ensure_installed = { + -- python "ty", + -- elixir "elixirls", + -- go "gopls", + -- typst "tinymist", - "clangd" + -- C + "clangd", + -- zig + "zls", + -- clojure + "clojure_lsp", + -- web + "cssls", "emmet_ls", "html", + -- containers + "dockerls" }, }, }, |
