diff options
| author | bh <qn+git@excalibur.computer> | 2026-03-15 15:03:32 +0800 |
|---|---|---|
| committer | bh <qn+git@excalibur.computer> | 2026-03-15 15:03:32 +0800 |
| commit | 576a147d1a103ccc9af3777d325e7dc09491b933 (patch) | |
| tree | 5ad58cfc8c9f0a07e7059ac88f8a1bbf370c21c9 /lua/plugins | |
| parent | 977e8911084c80baf30ab5d3a17af2e0bceb02e0 (diff) | |
Add vim-commentary, flash.nvim, and disable render-markdown by default
Diffstat (limited to 'lua/plugins')
| -rw-r--r-- | lua/plugins/init.lua | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/lua/plugins/init.lua b/lua/plugins/init.lua index 04eedf8..1ed53df 100644 --- a/lua/plugins/init.lua +++ b/lua/plugins/init.lua @@ -133,12 +133,26 @@ return { -- Git 'tpope/vim-fugitive', + -- Commenting + 'tpope/vim-commentary', + + -- Flash (quick navigation) + { + 'folke/flash.nvim', + event = 'VeryLazy', + config = function() + require('config.flash')() + end, + }, + -- Markdown Rendering { 'MeanderingProgrammer/render-markdown.nvim', dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, ft = { 'markdown' }, - opts = {}, + opts = { + enabled = false, + }, }, -- Copilot |
