15 lines
240 B
Lua
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,
|
|
}
|