✨ feat(nvim): added all lazyvim plugins
This commit is contained in:
parent
d359eb2c24
commit
017fe08853
2 changed files with 48 additions and 0 deletions
|
@ -2,6 +2,12 @@ local cmp = require("cmp")
|
|||
|
||||
return {
|
||||
"hrsh7th/nvim-cmp",
|
||||
dependencies = {
|
||||
"hrsh7th/cmp-nvim-lsp",
|
||||
"hrsh7th/cmp-buffer",
|
||||
"hrsh7th/cmp-path",
|
||||
"saadparwaiz1/cmp_luasnip",
|
||||
},
|
||||
keys = {
|
||||
{ "<leader>ciC", "<cmd>CmpStatus<CR>", desc = "Cmp Status" },
|
||||
},
|
||||
|
|
42
.config/nvim/lua/plugins/lazyvim-included.lua
Normal file
42
.config/nvim/lua/plugins/lazyvim-included.lua
Normal file
|
@ -0,0 +1,42 @@
|
|||
-- Here are the plugins that are included in LazyVim and I didnt change
|
||||
|
||||
return {
|
||||
-- Coding
|
||||
{ "L3MON4D3/LuaSnip" },
|
||||
{ "rafamadriz/friendly-snippets" },
|
||||
{ "echasnovski/mini.surround" },
|
||||
{ "JoosepAlviste/nvim-ts-context-commentstring" },
|
||||
{ "echasnovski/mini.comment" },
|
||||
{ "echasnovski/mini.ai" },
|
||||
|
||||
-- Editor
|
||||
{ "RRethy/vim-illuminate" },
|
||||
{ "echasnovski/mini.bufremove" },
|
||||
{ "folke/trouble.nvim" },
|
||||
{ "folke/todo-comments.nvim" },
|
||||
|
||||
-- LSP
|
||||
{ "folke/neoconf.nvim" },
|
||||
{ "folke/neodev.nvim" },
|
||||
{ "williamboman/mason-lspconfig.nvim" },
|
||||
|
||||
-- TreeSitter
|
||||
{ "nvim-treesitter/nvim-treesitter" },
|
||||
{ "nvim-treesitter/nvim-treesitter-textobjects" },
|
||||
{ "nvim-treesitter/nvim-treesitter-context" },
|
||||
{ "windwp/nvim-ts-autotag" },
|
||||
|
||||
-- UI
|
||||
{ "rcarriga/nvim-notify" },
|
||||
{ "lukas-reineke/indent-blankline.nvim" },
|
||||
{ "stevearc/dressing.nvim" },
|
||||
{ "echasnovski/mini.indentscope" },
|
||||
{ "folke/noice.nvim" },
|
||||
{ "nvim-tree/nvim-web-devicons" },
|
||||
{ "MunifTanjim/nui.nvim" },
|
||||
|
||||
-- Util
|
||||
{ "dstein64/vim-startuptime" },
|
||||
{ "folke/persistence.nvim" },
|
||||
{ "nvim-lua/plenary.nvim" },
|
||||
}
|
Loading…
Add table
Reference in a new issue