chore: Added lsp configs for haskell and rust to config

This commit is contained in:
2022-10-16 15:51:02 +01:00
parent 2d542dbe96
commit 1069a2a2af
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
local present, lspconfig = pcall(require,"lspconfig")
lspconfig.hls.setup{
on_attach = on_attach,
capabilities = capabilities,
}
lspconfig.rust_analyzer.setup{
on_attach = on_attach,
capabilities = capabilities,
}