hopefully fix typescript checking in vue files

This commit is contained in:
Mark Riedesel 2024-08-07 11:14:34 -05:00
parent 85080081bc
commit a61051f82b
5 changed files with 55 additions and 1 deletions

View file

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