14 lines
240 B
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
|
|
}
|