Disable auto rename for vue
This commit is contained in:
10
lua/plugins/ts-autotag.lua
Normal file
10
lua/plugins/ts-autotag.lua
Normal 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
16
lua/plugins/vtsls.lua
Normal file
@ -0,0 +1,16 @@
|
||||
return {
|
||||
"neovim/nvim-lspconfig",
|
||||
opts = {
|
||||
servers = {
|
||||
vtsls = {
|
||||
settings = {
|
||||
vtsls = {
|
||||
rename = {
|
||||
autoRename = false,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user