Open jeffsaremi opened 2 years ago
vim.g["LanguageClient_serverCommands"] = {
rust = { "~/.cargo/bin/rustup", "run", "stable", "rls" },
javascript = { "/usr/local/bin/javascript-typescript-stdio" },
["javascript.jsx"] = { "tcp://127.0.0.1:2089" },
...
}
Any reason you're using this over the builtin LSP client btw?
What is the equivalent of this if I'm using
init.lua
file:thanks