summaryrefslogtreecommitdiffstats
path: root/.config/nvim/plugin/00-plugin.lua
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-06-12 17:02:54 +0200
committerThomas Vanbesien <tvanbesi@proton.me>2026-06-12 22:57:34 +0200
commit1734929edd6ceb47fcee53cb9d0a408b41dea14a (patch)
tree2bd06885ddd5f91656dfb7851ddb3446e6a2ca74 /.config/nvim/plugin/00-plugin.lua
parentc3c0fe51524d0e7bbc2d93fb9ee0127db691287a (diff)
downloaddotfiles-1734929edd6ceb47fcee53cb9d0a408b41dea14a.tar.gz
dotfiles-1734929edd6ceb47fcee53cb9d0a408b41dea14a.zip
misc(nvim): reformat lua files to 100 char line width
Diffstat (limited to '.config/nvim/plugin/00-plugin.lua')
-rw-r--r--.config/nvim/plugin/00-plugin.lua26
1 files changed, 13 insertions, 13 deletions
diff --git a/.config/nvim/plugin/00-plugin.lua b/.config/nvim/plugin/00-plugin.lua
index 55e5a1c..584fe8e 100644
--- a/.config/nvim/plugin/00-plugin.lua
+++ b/.config/nvim/plugin/00-plugin.lua
@@ -5,17 +5,17 @@
--
vim.pack.add({
- "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/MeanderingProgrammer/render-markdown.nvim", -- Markdown rendering
- "https://github.com/mfussenegger/nvim-dap", -- DAP (Debug Adapter Protocol) client
- "https://github.com/neovim/nvim-lspconfig", -- LSP server configurations
- "https://github.com/nvim-lualine/lualine.nvim", -- Status line
- "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
+ "https://github.com/airblade/vim-gitgutter",
+ "https://github.com/ibhagwan/fzf-lua",
+ "https://github.com/jbyuki/one-small-step-for-vimkind",
+ "https://github.com/maxmx03/solarized.nvim",
+ "https://github.com/MeanderingProgrammer/render-markdown.nvim",
+ "https://github.com/mfussenegger/nvim-dap",
+ "https://github.com/neovim/nvim-lspconfig",
+ "https://github.com/nvim-lualine/lualine.nvim",
+ "https://github.com/nvim-tree/nvim-web-devicons",
+ "https://github.com/nvim-treesitter/nvim-treesitter",
+ "https://github.com/qadzek/link.vim",
+ "https://github.com/tpope/vim-surround",
+ "https://github.com/windwp/nvim-autopairs",
})