summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-06-11 20:05:14 +0200
committerThomas Vanbesien <tvanbesi@proton.me>2026-06-11 20:21:49 +0200
commit8033c39d0a8ecba3ef3d9a5628c213421283cce6 (patch)
tree406bd0d637b023726d32088533a157764efe1bfe
parentb62430bb2610198bffb076a59755ad74b4a3d50a (diff)
downloaddotfiles-8033c39d0a8ecba3ef3d9a5628c213421283cce6.tar.gz
dotfiles-8033c39d0a8ecba3ef3d9a5628c213421283cce6.zip
refactor(nvim): sort list and rename file
-rw-r--r--.config/nvim/plugin/00-plugin.lua (renamed from .config/nvim/plugin/00-plugins.lua)22
1 files changed, 12 insertions, 10 deletions
diff --git a/.config/nvim/plugin/00-plugins.lua b/.config/nvim/plugin/00-plugin.lua
index 625e8c2..55e5a1c 100644
--- a/.config/nvim/plugin/00-plugins.lua
+++ b/.config/nvim/plugin/00-plugin.lua
@@ -1,19 +1,21 @@
--
--- Remote plugins installation
+-- 00-plugin.lua
+--
+-- Installs third-party plugins.
--
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/airblade/vim-gitgutter", -- Show git status in the gutter
+ "https://github.com/ibhagwan/fzf-lua", -- Fuzzy finder
+ "https://github.com/jbyuki/one-small-step-for-vimkind", -- DAP adapter for Neovim Lua
"https://github.com/maxmx03/solarized.nvim", -- Solarized color scheme
- "https://github.com/neovim/nvim-lspconfig", -- LSP server configurations
+ "https://github.com/MeanderingProgrammer/render-markdown.nvim", -- Markdown rendering
"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/neovim/nvim-lspconfig", -- LSP server configurations
"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/nvim-tree/nvim-web-devicons", -- File-type icons (lualine, fzf-lua, render-markdown)
+ "https://github.com/nvim-treesitter/nvim-treesitter", -- Parsers, highlighting (treesitter, markdown)
"https://github.com/qadzek/link.vim", -- Tidy URLs into a dedicated section (markdown)
+ "https://github.com/tpope/vim-surround", -- Manipulate delimiters
+ "https://github.com/windwp/nvim-autopairs", -- Insert matching delimiters
})