Compare commits
No commits in common. "eedc2e1d1b4babca640223a669f2f5b3947632be" and "8582915d97256656a4c229f4bb6b9273613c367b" have entirely different histories.
eedc2e1d1b
...
8582915d97
23
nvimrc
23
nvimrc
@ -766,7 +766,6 @@ nvim_lsp.gopls.setup{
|
|||||||
|
|
||||||
-- Rust
|
-- Rust
|
||||||
nvim_lsp.rust_analyzer.setup{
|
nvim_lsp.rust_analyzer.setup{
|
||||||
capabilities = capabilities,
|
|
||||||
on_attach = on_attach,
|
on_attach = on_attach,
|
||||||
settings = {
|
settings = {
|
||||||
["rust-analyzer"] = {
|
["rust-analyzer"] = {
|
||||||
@ -782,11 +781,8 @@ nvim_lsp.rust_analyzer.setup{
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
procMacro = {
|
procMacro = {
|
||||||
enable = false,
|
enable = true
|
||||||
},
|
},
|
||||||
diagnostics = {
|
|
||||||
disabled = { "unresolved-proc-macro" },
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -844,15 +840,24 @@ nvim_lsp.diagnosticls.setup{
|
|||||||
|
|
||||||
-- Lua
|
-- Lua
|
||||||
|
|
||||||
local lua_ls_root_path = os.getenv("HOME").."/dev/lua-language-server"
|
local system_name
|
||||||
local lua_ls_binary = lua_ls_root_path.."/bin/lua-language-server"
|
if vim.fn.has("mac") == 1 then
|
||||||
|
system_name = "macOS"
|
||||||
|
elseif vim.fn.has("unix") == 1 then
|
||||||
|
system_name = "Linux"
|
||||||
|
else
|
||||||
|
print("Unsupported system for sumneko")
|
||||||
|
end
|
||||||
|
|
||||||
|
local sumneko_root_path = os.getenv("HOME").."/dev/lua-language-server"
|
||||||
|
local sumneko_binary = sumneko_root_path.."/bin/"..system_name.."/lua-language-server"
|
||||||
|
|
||||||
local runtime_path = vim.split(package.path, ';')
|
local runtime_path = vim.split(package.path, ';')
|
||||||
table.insert(runtime_path, "lua/?.lua")
|
table.insert(runtime_path, "lua/?.lua")
|
||||||
table.insert(runtime_path, "lua/?/init.lua")
|
table.insert(runtime_path, "lua/?/init.lua")
|
||||||
|
|
||||||
nvim_lsp.lua_ls.setup {
|
nvim_lsp.sumneko_lua.setup {
|
||||||
cmd = {lua_ls_binary, "-E", lua_ls_root_path .. "/main.lua"};
|
cmd = {sumneko_binary, "-E", sumneko_root_path .. "/main.lua"};
|
||||||
settings = {
|
settings = {
|
||||||
Lua = {
|
Lua = {
|
||||||
runtime = {
|
runtime = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user