feat: nvim-treesitter-textobjects
This commit is contained in:
parent
9b0117b2e3
commit
c88b82e9f6
3 changed files with 9 additions and 0 deletions
|
@ -57,6 +57,7 @@ with final.pkgs.lib; let
|
||||||
gitsigns-nvim
|
gitsigns-nvim
|
||||||
|
|
||||||
# Treesitter
|
# Treesitter
|
||||||
|
nvim-treesitter-textobjects
|
||||||
(nvim-treesitter.withPlugins (
|
(nvim-treesitter.withPlugins (
|
||||||
plugins:
|
plugins:
|
||||||
with plugins; [
|
with plugins; [
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
local req = MarleyVim.local_require('plugins.treesitter')
|
local req = MarleyVim.local_require('plugins.treesitter')
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
req('nvim-treesitter-textobjects'),
|
||||||
req('nvim-treesitter'),
|
req('nvim-treesitter'),
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
return {
|
||||||
|
'nvim-treesitter-textobjects',
|
||||||
|
event = 'DeferredUIEnter',
|
||||||
|
before = function()
|
||||||
|
require('lz.n').trigger_load('nvim-treesitter')
|
||||||
|
end,
|
||||||
|
}
|
Loading…
Reference in a new issue