Compare commits
2 commits
68f0530548
...
587f1baefd
Author | SHA1 | Date | |
---|---|---|---|
587f1baefd | |||
2b3aa461a2 |
4 changed files with 15 additions and 0 deletions
|
@ -54,8 +54,10 @@ with final.pkgs.lib; let
|
||||||
gitsigns-nvim
|
gitsigns-nvim
|
||||||
|
|
||||||
# Coding
|
# Coding
|
||||||
|
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
nvim/lua/plugins/coding/friendly-snippets.lua
Normal file
4
nvim/lua/plugins/coding/friendly-snippets.lua
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
return {
|
||||||
|
'friendly-snippets',
|
||||||
|
lazy = true,
|
||||||
|
}
|
|
@ -1,6 +1,8 @@
|
||||||
local req = MarleyVim.local_require('plugins.coding')
|
local req = MarleyVim.local_require('plugins.coding')
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
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