hopefully fix typescript checking in vue files
This commit is contained in:
parent
85080081bc
commit
a61051f82b
5 changed files with 55 additions and 1 deletions
14
.config/nvim/lua/klowner/plugins/treesitter-textobjects.lua
Normal file
14
.config/nvim/lua/klowner/plugins/treesitter-textobjects.lua
Normal 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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue