Add more unneded plugins.

This commit is contained in:
CronyAkatsuki 2024-01-12 14:20:29 +01:00
parent 25db33aa81
commit 5d658930f4

View File

@ -14,6 +14,8 @@ vim.opt.rtp:prepend(lazypath)
-- plugins installation and configuration -- plugins installation and configuration
require("lazy").setup({ require("lazy").setup({
-- lsp setup
{
-- LSP Support -- LSP Support
"neovim/nvim-lspconfig", "neovim/nvim-lspconfig",
-- lsp download manager -- lsp download manager
@ -26,7 +28,21 @@ require("lazy").setup({
"mfussenegger/nvim-lint", "mfussenegger/nvim-lint",
-- mason autoinstaller for formatter's and linter's -- mason autoinstaller for formatter's and linter's
"WhoIsSethDaniel/mason-tool-installer.nvim", "WhoIsSethDaniel/mason-tool-installer.nvim",
-- minimal snippet's support
"dcampos/nvim-snippy",
-- basic snippet's
"honza/vim-snippets",
-- cmp for autocompletion
"hrsh7th/nvim-cmp",
-- cmp nvim-lsp plugin
"hrsh7th/cmp-nvim-lsp",
-- cmp snippy support
"dcampos/cmp-snippy",
-- path comletion
"hrsh7th/cmp-path",
-- kind icons
"onsails/lspkind.nvim",
},
-- Adds git related signs to the gutter, as well as utilities for managing changes -- Adds git related signs to the gutter, as well as utilities for managing changes
"lewis6991/gitsigns.nvim", "lewis6991/gitsigns.nvim",