dotfiles/.config/nvim/lua/klowner/plugins/treesitter-textobjects.lua

14 lines
240 B
Lua

return {
"nvim-treesitter/nvim-treesitter-textobjects",
lazy = true,
config = function ()
require("nvim-treesitter.configs").setup({
textobjects = {
select = {
enable = true,
lookahead = true,
},
},
})
end
}