diff options
Diffstat (limited to 'lua/plugins/init.lua')
| -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 |
