diff options
Diffstat (limited to 'configs/nvim/lua/plugins.lua')
-rw-r--r-- | configs/nvim/lua/plugins.lua | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/configs/nvim/lua/plugins.lua b/configs/nvim/lua/plugins.lua index 14f9903..5ba7e41 100644 --- a/configs/nvim/lua/plugins.lua +++ b/configs/nvim/lua/plugins.lua @@ -1,5 +1,6 @@ return { "neovim/nvim-lspconfig", + "Hoffs/omnisharp-extended-lsp.nvim", "hrsh7th/nvim-cmp", "hrsh7th/cmp-nvim-lsp", "hrsh7th/cmp-buffer", @@ -7,4 +8,25 @@ return { "hrsh7th/cmp-cmdline", "L3MON4D3/LuaSnip", "saadparwaiz1/cmp_luasnip", + { + "sainnhe/everforest", + lazy = false, + priority = 1000, -- make sure to load this before all the other start plugins + }, + "nvim-tree/nvim-web-devicons", + "nvim-lua/plenary.nvim", + "nvim-lualine/lualine.nvim", + "nvim-telescope/telescope.nvim", + "windwp/nvim-autopairs", + "lewis6991/gitsigns.nvim", + "mhartington/formatter.nvim", + "mfussenegger/nvim-lint", + "akinsho/toggleterm.nvim", + { + "nvim-neo-tree/neo-tree.nvim", + dependencies = { + "nvim-lua/plenary.nvim", + "MunifTanjim/nui.nvim", + }, + }, } |