aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Bossing <info@maxbossing.de>2025-07-24 12:04:02 +0200
committerMax Bossing <info@maxbossing.de>2025-07-24 12:04:02 +0200
commite1b21ad07733f2b8938d7413daa5a3bf1dbd0752 (patch)
tree615709173bdec85d3822e4b5199eaf56cf30b917
parenta859407a171c0c13b93f8c234de31048056b08e3 (diff)
refactor: plugin reformatting
-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",
})