Fix LSPConfig

This commit is contained in:
Anthony Cicchetti 2022-12-04 14:34:54 -05:00
parent cf744465b3
commit f36dae495e

View file

@ -6,8 +6,29 @@
(let [(lspconfig? lspconfig) (pcall require :lspconfig)
(mason? mason) (pcall require :mason)
(mason-lsp? mason-lsp) (pcall require :mason-lspconfig)]
(when ok?
(when mason-lsp?
(mason.setup)
(mason-lsp.setup)
(lspconfig.rust_analyzer.setup {})
(lspconfig.rust_analyzer.setup {
:cmd ["rustup" "run" "stable" "rust-analyzer"]
:settings {:rust-analyzer {
:cargo {
:buildScripts {
:enable true
}
}
:procMacro {
:enable true
}
:checkOnSave {
:command "clippy"
}
:inlayHints {
:bindingModeHints {
:enable true
}
}
}
}
})
(lspconfig.yamlls.setup {})))