diff options
Diffstat (limited to 'nvim/lua/config/pack.lua')
| -rw-r--r-- | nvim/lua/config/pack.lua | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/nvim/lua/config/pack.lua b/nvim/lua/config/pack.lua new file mode 100644 index 0000000..ba3cd07 --- /dev/null +++ b/nvim/lua/config/pack.lua @@ -0,0 +1,89 @@ +-- Dependencies + +vim.pack.add { + -- Laravel.Nvim + { + src = 'https://github.com/MunifTanjim/nui.nvim', + name = 'nui.nvim' + }, + { + src = 'https://github.com/nvim-lua/plenary.nvim', + name = 'plenary.nvim' + }, +} + +-- Plugins +vim.pack.add { + { + src = 'https://github.com/lewis6991/gitsigns.nvim', + name = 'gitsigns' + }, + { + src = 'https://github.com/nvim-treesitter/nvim-treesitter', + name = 'treesitter' + }, + { + src = 'https://github.com/OXY2DEV/markview.nvim', + name = 'markview' + }, + { + src = 'https://github.com/nvim-mini/mini.surround', + name = 'surround' + }, + { + src = 'https://github.com/nvim-mini/mini.ai', + name = 'ai (around)' + }, + { + src = 'https://github.com/nvim-mini/mini.move', + name = 'move' + }, + { + src = 'https://github.com/nvim-mini/mini.files', + name = 'files' + }, + { + src = 'https://github.com/nvim-treesitter/nvim-treesitter-context', + name = 'treesitter-context' + }, + { + src = 'https://github.com/echasnovski/mini.pick', + name = 'Picker' + }, + { + src = 'https://github.com/HakonHarnes/img-clip.nvim', + name = 'image-clip' + }, + { + src = 'https://github.com/akinsho/toggleterm.nvim', + name = 'toggleterm' + }, + { + src = 'https://github.com/jghauser/follow-md-links.nvim', + name = 'follow-markdown-links' + }, + { + src = 'https://github.com/rachartier/tiny-inline-diagnostic.nvim', + name = 'tiny-inline-diagnostic' + }, + { + src = 'https://github.com/adibhanna/laravel.nvim', + name = 'laravel' + }, + { + src = 'https://github.com/neovim/nvim-lspconfig', + name = 'lspconfig' + }, +} + +require('mini.surround').setup() +require('mini.ai').setup() +require('mini.pick').setup() +require('mini.move').setup() +require('mini.files').setup() +require('mini.completion').setup() +require('tiny-inline-diagnostic').setup() +require('toggleterm').setup() +require('gitsigns').setup() +require('laravel').setup() +require 'treesitter-context'.setup { enable = true } |
