diff options
author | zachir <zachir@librem.one> | 2025-06-29 20:59:09 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2025-06-29 20:59:09 -0500 |
commit | 1fec31733049a12230919c70fc3eb0eabb4c45c9 (patch) | |
tree | 96cdb26f4a60fbd55fb449dc2c89c535ffef611d /nvim/lua/plugins.lua | |
parent | 511945a793625d87340f04800cd1c5bdafc3b379 (diff) | |
parent | 9f80bcde3c3ff4e35be9aaeda800ed4bed2f174c (diff) |
Merge branch 'master' into cla
Diffstat (limited to 'nvim/lua/plugins.lua')
-rw-r--r-- | nvim/lua/plugins.lua | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua index 0801939..8056494 100644 --- a/nvim/lua/plugins.lua +++ b/nvim/lua/plugins.lua @@ -12,6 +12,26 @@ end vim.opt.rtp:prepend(lazypath) require("lazy").setup({ + -- LSP manager + { "mason-org/mason.nvim", opts = {} }, + { + "mason-org/mason-lspconfig.nvim", + dependencies = { + "mason-org/mason.nvim", + "neovim/nvim-lspconfig", + }, + opts = { + ensure_installed = { "pylsp", "clangd", "rust_analyzer", "zls" }, + }, + }, + { + "neovim/nvim-lspconfig", + config = function() + local lspconfig = require("lspconfig") + + lspconfig.pylsp.setup({}) + end, + }, "tanvirtin/monokai.nvim", 'preservim/nerdtree', 'ziglang/zig.vim', |