How to enable Volar takeover mode? #294
Answered
by
last-partizan
last-partizan
asked this question in
Q&A
-
Volar languate server for Vue can replace tsserver in project, but i have troubles understanding how to enable it with mason? I enabled it in my local {
"volar.takeOverMode.enabled": true
} And i uninstalled |
Beta Was this translation helpful? Give feedback.
Answered by
last-partizan
Aug 14, 2022
Replies: 1 comment
-
Oh, i need to set it up and override list of supported filetypes. With vim.list_extend(lvim.lsp.automatic_configuration.skipped_servers, { "tsserver" })
require("lvim.lsp.manager").setup("volar", {
filetypes = {"vue", "typescript", "javascript"},
}) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
last-partizan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Oh, i need to set it up and override list of supported filetypes. With
lvim
i was able to do this: