diff options
Diffstat (limited to 'store/config/nvim/lua/plugins.lua')
-rw-r--r-- | store/config/nvim/lua/plugins.lua | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/store/config/nvim/lua/plugins.lua b/store/config/nvim/lua/plugins.lua index 4f61660..8458575 100644 --- a/store/config/nvim/lua/plugins.lua +++ b/store/config/nvim/lua/plugins.lua @@ -1,11 +1,13 @@ -- 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", + { + "catppuccin/nvim", + name = "catppuccin", + priority = 1000 + }, + { + "neovim/nvim-lspconfig" + }, { "nvim-treesitter/nvim-treesitter", build = ":TSUpdate" @@ -28,7 +30,12 @@ return { "nvim-telescope/telescope.nvim", dependencies = { 'nvim-lua/plenary.nvim' } }, - "windwp/nvim-autopairs", - "mfussenegger/nvim-lint", - "lewis6991/gitsigns.nvim", + { "lewis6991/gitsigns.nvim" }, + { "hrsh7th/nvim-cmp" }, + { "hrsh7th/cmp-nvim-lsp" }, + { "hrsh7th/cmp-buffer" }, + { "hrsh7th/cmp-path" }, + { "windwp/nvim-autopairs" }, + { "mfussenegger/nvim-lint" }, + { 'stevearc/conform.nvim' } } |