Disable auto rename for vue

This commit is contained in:
2026-01-02 23:03:01 +05:00
parent 3f9489dc9d
commit 759c96ff92
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,10 @@
return {
"windwp/nvim-ts-autotag",
opts = {
opts = {
enable_rename = false, -- Disable auto rename
enable_close = true, -- Keep auto close if you want it
enable_close_on_slash = false,
},
},
}

16
lua/plugins/vtsls.lua Normal file
View File

@ -0,0 +1,16 @@
return {
"neovim/nvim-lspconfig",
opts = {
servers = {
vtsls = {
settings = {
vtsls = {
rename = {
autoRename = false,
},
},
},
},
},
},
}