feat: mini.comment

This commit is contained in:
punkfairie 2025-01-01 14:17:33 -08:00
parent fbeb45e70b
commit 1183178899
Signed by: punkfairie
GPG key ID: A509E8F77FB9D696
3 changed files with 9 additions and 0 deletions

View file

@ -98,6 +98,7 @@ with final.pkgs.lib; let
lexima-vim
(mkNvimPlugin inputs.neotab-nvim "neotab.nvim")
ts-comments-nvim
mini-comment
mini-ai
# Formatting

View file

@ -8,4 +8,5 @@ return {
req('neotab-nvim'),
req('ts-comments-nvim'),
req('mini-ai'),
req('mini-comment'),
}

View file

@ -0,0 +1,7 @@
return {
'mini.comment',
event = 'DeferredUIEnter',
after = function()
require('mini.comment').setup({})
end,
}