35 lines
831 B
Lua
35 lines
831 B
Lua
-- Here are the plugins that are included in LazyVim and I didnt change
|
|
|
|
return {
|
|
-- Coding
|
|
{ "garymjr/nvim-snippets" },
|
|
{ "folke/ts-comments.nvim" },
|
|
{ "echasnovski/mini.comment" },
|
|
{ "echasnovski/mini.ai" },
|
|
|
|
-- Editor
|
|
{ "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" },
|
|
{ "windwp/nvim-ts-autotag" },
|
|
|
|
-- UI
|
|
{ "rcarriga/nvim-notify" },
|
|
{ "lukas-reineke/indent-blankline.nvim" },
|
|
{ "stevearc/dressing.nvim" },
|
|
{ "folke/noice.nvim" },
|
|
{ "nvim-tree/nvim-web-devicons" },
|
|
{ "MunifTanjim/nui.nvim" },
|
|
|
|
-- Util
|
|
{ "folke/persistence.nvim" },
|
|
{ "nvim-lua/plenary.nvim" },
|
|
}
|