diff options
author | crupest <crupest@outlook.com> | 2024-09-07 03:09:26 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2024-09-07 03:09:26 +0800 |
commit | 4b64e3d37ece2d7251347b3df8551e98363f845f (patch) | |
tree | 003c295cfd5b2615e566a07db76478aad427b906 /configs/nvim/config-root/lua/plugins.lua | |
parent | faeef2cd919939ad9a3a276f2c603d7be9acb9ba (diff) | |
download | crupest-4b64e3d37ece2d7251347b3df8551e98363f845f.tar.gz crupest-4b64e3d37ece2d7251347b3df8551e98363f845f.tar.bz2 crupest-4b64e3d37ece2d7251347b3df8551e98363f845f.zip |
config(nvim): create new file structure.
Diffstat (limited to 'configs/nvim/config-root/lua/plugins.lua')
-rw-r--r-- | configs/nvim/config-root/lua/plugins.lua | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/configs/nvim/config-root/lua/plugins.lua b/configs/nvim/config-root/lua/plugins.lua new file mode 100644 index 0000000..d7d0247 --- /dev/null +++ b/configs/nvim/config-root/lua/plugins.lua @@ -0,0 +1,32 @@ +-- spellchecker: disable +return { + { "catppuccin/nvim", name = "catppuccin", priority = 1000 }, + "neovim/nvim-lspconfig", + "hrsh7th/nvim-cmp", + "hrsh7th/cmp-nvim-lsp", + "hrsh7th/cmp-buffer", + "hrsh7th/cmp-path", + "hrsh7th/cmp-cmdline", + "L3MON4D3/LuaSnip", + "saadparwaiz1/cmp_luasnip", + { + "nvim-lualine/lualine.nvim", + dependencies = { 'nvim-tree/nvim-web-devicons' } + }, + { + "nvim-telescope/telescope.nvim", + dependencies = { 'nvim-lua/plenary.nvim' } + }, + "windwp/nvim-autopairs", + "mfussenegger/nvim-lint", + "akinsho/toggleterm.nvim", + "lewis6991/gitsigns.nvim", + { + "nvim-neo-tree/neo-tree.nvim", + dependencies = { + "nvim-lua/plenary.nvim", + "nvim-tree/nvim-web-devicons", + "MunifTanjim/nui.nvim", + }, + }, +} |