diff options
| author | Thomas Vanbesien <tvanbesi@proton.me> | 2026-05-29 16:21:27 +0200 |
|---|---|---|
| committer | Thomas Vanbesien <tvanbesi@proton.me> | 2026-05-29 16:21:27 +0200 |
| commit | 2c790a4b7abe1473f802cc5e408a1291e6ebb8ee (patch) | |
| tree | 59a654c74da65b7f0700ddc92e9f00ba29222869 /.config/nvim/plugin/00-plugins.lua | |
| parent | b875b7f877a08c20c6a903f57a6cb253057e6ab7 (diff) | |
| download | dotfiles-2c790a4b7abe1473f802cc5e408a1291e6ebb8ee.tar.gz dotfiles-2c790a4b7abe1473f802cc5e408a1291e6ebb8ee.zip | |
refactor(nvim): group vim.pack.add() calls
This is to avoid getting many prompts when launching nvim and installing
the packages initially.
Diffstat (limited to '.config/nvim/plugin/00-plugins.lua')
| -rw-r--r-- | .config/nvim/plugin/00-plugins.lua | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.config/nvim/plugin/00-plugins.lua b/.config/nvim/plugin/00-plugins.lua new file mode 100644 index 0000000..9792db1 --- /dev/null +++ b/.config/nvim/plugin/00-plugins.lua @@ -0,0 +1,19 @@ +-- +-- Plugin declarations +-- + +vim.pack.add({ + "https://github.com/tpope/vim-surround", -- Manipulate delimiters + "https://github.com/nvim-treesitter/nvim-treesitter", -- Parsers, highlighting (treesitter, markdown) + "https://github.com/maxmx03/solarized.nvim", -- Solarized color scheme + "https://github.com/neovim/nvim-lspconfig", -- LSP server configurations + "https://github.com/mfussenegger/nvim-dap", -- DAP (Debug Adapter Protocol) client + "https://github.com/jbyuki/one-small-step-for-vimkind", -- DAP adapter for Neovim Lua + "https://github.com/nvim-tree/nvim-web-devicons", -- File-type icons (lualine, fzf-lua, render-markdown) + "https://github.com/nvim-lualine/lualine.nvim", -- Status line + "https://github.com/windwp/nvim-autopairs", -- Insert matching delimiters + "https://github.com/airblade/vim-gitgutter", -- Show git status in the gutter + "https://github.com/MeanderingProgrammer/render-markdown.nvim", -- Markdown rendering + "https://github.com/ibhagwan/fzf-lua", -- Fuzzy finder + "https://github.com/qadzek/link.vim", -- Tidy URLs into a dedicated section (markdown) +}) |
