Compare commits

...

1 Commits

Author SHA1 Message Date
759c96ff92 Disable auto rename for vue 2026-01-02 23:03:01 +05:00
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,
},
},
},
},
},
},
}