aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins.lua
diff options
context:
space:
mode:
authorAlec Goncharow <alec@goncharow.dev>2025-05-10 13:26:52 -0400
committerAlec Goncharow <alec@goncharow.dev>2025-05-28 16:37:49 -0400
commit2ea5ad32b3d33811de04ce7ec432beb00eef3cc6 (patch)
treed0e64bc55481d16bcb078af7787b1920efbe43d7 /.config/nvim/lua/plugins.lua
parent895de7bb2bf3381a6f796df93e0c25e8d4b0ff8b (diff)
things
Diffstat (limited to '.config/nvim/lua/plugins.lua')
-rw-r--r--.config/nvim/lua/plugins.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua
index a68da80..dc855b9 100644
--- a/.config/nvim/lua/plugins.lua
+++ b/.config/nvim/lua/plugins.lua
@@ -138,5 +138,15 @@ return require('lazy').setup({
event = "VeryLazy",
opts = {
},
+ },
+ {
+ "VonHeikemen/lsp-zero.nvim",
+ branch = "v2.x",
+ config = false,
+ init = function()
+ -- Disable automatic setup, we are doing it manually
+ vim.g.lsp_zero_extend_cmp = 0
+ vim.g.lsp_zero_extend_lspconfig = 0
+ end,
},
})