R language server failed to start after installation on Windows #411
Answered
by
williamboman
hongyuanjia
asked this question in
Q&A
-
I am trying to move my config from
I have confirmed that the R packages and the The
But after I ran
My lsp config use "neovim/nvim-lspconfig"
use {
"williamboman/mason.nvim",
after = "nvim-lspconfig",
config = function()
require("mason").setup()
end
}
use {
"williamboman/mason-lspconfig.nvim",
after = "mason.nvim",
requires = {
"folke/lua-dev.nvim",
"simrat39/rust-tools.nvim",
"jose-elias-alvarez/null-ls.nvim"
},
config = function()
require("mason-lspconfig").setup({
ensure_installed = { "sumneko_lua" }
})
require("null-ls").setup({
sources = {
require("null-ls").builtins.completion.spell
}
})
local on_attach = function(client, bufnr)
......
end
local lspconfig = require("lspconfig")
require("mason-lspconfig").setup_handlers({
function(server_name)
require("lspconfig")[server_name].setup({ on_attach = on_attach })
end,
......
})
end
} |
Beta Was this translation helpful? Give feedback.
Answered by
williamboman
Sep 13, 2022
Replies: 1 comment 1 reply
-
Hello! This should be fixed in williamboman/mason-lspconfig.nvim#56. Try pulling latest plugin versions |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
hongyuanjia
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello! This should be fixed in williamboman/mason-lspconfig.nvim#56. Try pulling latest plugin versions