diff options
author | crupest <crupest@outlook.com> | 2024-09-07 02:59:28 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2024-09-07 02:59:28 +0800 |
commit | 8c7363cab0c31db715484f6c3b59cc4f983d7373 (patch) | |
tree | f1c05e14d3e4a2955e49121ddf8341e7fc8e951b /configs/nvim/lua/plugins.lua | |
parent | 166d458acb6480bef7b1a1aee5ce63569e5e0323 (diff) | |
download | crupest-8c7363cab0c31db715484f6c3b59cc4f983d7373.tar.gz crupest-8c7363cab0c31db715484f6c3b59cc4f983d7373.tar.bz2 crupest-8c7363cab0c31db715484f6c3b59cc4f983d7373.zip |
config(nvim): refactor a lot.
Diffstat (limited to 'configs/nvim/lua/plugins.lua')
-rw-r--r-- | configs/nvim/lua/plugins.lua | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/configs/nvim/lua/plugins.lua b/configs/nvim/lua/plugins.lua index 1e4ded9..d7d0247 100644 --- a/configs/nvim/lua/plugins.lua +++ b/configs/nvim/lua/plugins.lua @@ -2,7 +2,6 @@ return { { "catppuccin/nvim", name = "catppuccin", priority = 1000 }, "neovim/nvim-lspconfig", - "Hoffs/omnisharp-extended-lsp.nvim", "hrsh7th/nvim-cmp", "hrsh7th/cmp-nvim-lsp", "hrsh7th/cmp-buffer", @@ -10,12 +9,15 @@ return { "hrsh7th/cmp-cmdline", "L3MON4D3/LuaSnip", "saadparwaiz1/cmp_luasnip", - "nvim-tree/nvim-web-devicons", - "nvim-lua/plenary.nvim", - "nvim-lualine/lualine.nvim", - "nvim-telescope/telescope.nvim", + { + "nvim-lualine/lualine.nvim", + dependencies = { 'nvim-tree/nvim-web-devicons' } + }, + { + "nvim-telescope/telescope.nvim", + dependencies = { 'nvim-lua/plenary.nvim' } + }, "windwp/nvim-autopairs", - "mhartington/formatter.nvim", "mfussenegger/nvim-lint", "akinsho/toggleterm.nvim", "lewis6991/gitsigns.nvim", @@ -23,6 +25,7 @@ return { "nvim-neo-tree/neo-tree.nvim", dependencies = { "nvim-lua/plenary.nvim", + "nvim-tree/nvim-web-devicons", "MunifTanjim/nui.nvim", }, }, |