aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua')
-rw-r--r--nvim/lua/plugins.lua18
1 files changed, 7 insertions, 11 deletions
diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua
index e863099..ba92221 100644
--- a/nvim/lua/plugins.lua
+++ b/nvim/lua/plugins.lua
@@ -74,22 +74,18 @@ require("lazy").setup({
end,
},
+ -- Rust LSP
{
'mrcjkb/rustaceanvim',
version = '^6', -- Recommended
lazy = false, -- This plugin is already lazy
},
- {"hrsh7th/nvim-cmp"},
- {"hrsh7th/cmp-buffer"},
- {"hrsh7th/cmp-path"},
- {"hrsh7th/cmp-nvim-lsp"},
- {"hrsh7th/cmp-nvim-lua"},
-
- {
- "ray-x/lsp_signature.nvim",
- event = InsertEnter
- },
-
+ -- Completion
+ "hrsh7th/nvim-cmp",
+ "hrsh7th/cmp-buffer",
+ "hrsh7th/cmp-path",
+ "hrsh7th/cmp-nvim-lsp",
+ "hrsh7th/cmp-nvim-lua",
})