dotfiles/.config/nvim/lua/jirr02/plugins/treesitter-textobjects.lua
2025-03-14 16:54:45 +01:00

15 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,
}