feat: ts-comments.nvim
This commit is contained in:
parent
2b3aa461a2
commit
587f1baefd
3 changed files with 9 additions and 0 deletions
|
@ -57,6 +57,7 @@ with final.pkgs.lib; let
|
||||||
friendly-snippets
|
friendly-snippets
|
||||||
lexima-vim
|
lexima-vim
|
||||||
(mkNvimPlugin inputs.neotab-nvim "neotab.nvim")
|
(mkNvimPlugin inputs.neotab-nvim "neotab.nvim")
|
||||||
|
ts-comments-nvim
|
||||||
|
|
||||||
# Treesitter
|
# Treesitter
|
||||||
nvim-treesitter-textobjects
|
nvim-treesitter-textobjects
|
||||||
|
|
|
@ -4,4 +4,5 @@ return {
|
||||||
req('friendly-snippets'),
|
req('friendly-snippets'),
|
||||||
req('lexima-vim'),
|
req('lexima-vim'),
|
||||||
req('neotab-nvim'),
|
req('neotab-nvim'),
|
||||||
|
req('ts-comments-nvim'),
|
||||||
}
|
}
|
||||||
|
|
7
nvim/lua/plugins/coding/ts-comments-nvim.lua
Normal file
7
nvim/lua/plugins/coding/ts-comments-nvim.lua
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
return {
|
||||||
|
'ts-comments.nvim',
|
||||||
|
event = 'DeferredUIEnter',
|
||||||
|
after = function()
|
||||||
|
require('ts-comments').setup({})
|
||||||
|
end,
|
||||||
|
}
|
Loading…
Reference in a new issue