aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2021-12-05 19:08:59 +0100
committerCharles Cabergs <me@cacharle.xyz>2021-12-05 19:08:59 +0100
commit6bb3fa958f775c9ff5769e2cb00ccaabe664fd99 (patch)
treef7cad04569e168c40bd0cadd47c69e8c09b0ac3a /config
parent2dc81b49c99d14ea7c604dc73f5c35e134588518 (diff)
downloaddotfiles-6bb3fa958f775c9ff5769e2cb00ccaabe664fd99.tar.gz
dotfiles-6bb3fa958f775c9ff5769e2cb00ccaabe664fd99.tar.bz2
dotfiles-6bb3fa958f775c9ff5769e2cb00ccaabe664fd99.zip
Added rust_analyzer lsp
Diffstat (limited to 'config')
-rw-r--r--config/nvim/lua/plugins.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/config/nvim/lua/plugins.lua b/config/nvim/lua/plugins.lua
index 8786fe0..dca67fb 100644
--- a/config/nvim/lua/plugins.lua
+++ b/config/nvim/lua/plugins.lua
@@ -28,11 +28,12 @@ return require('packer').startup(function()
lspconfig.clangd.setup { on_attach = on_attach }
-- need python-lsp-server and pyls-flake8
lspconfig.pylsp.setup { on_attach = on_attach }
+ -- rust_analyzer
+ lspconfig.rust_analyzer.setup { on_attach = on_attach }
vim.diagnostic.config {
signs = false,
update_in_insert = false,
}
- -- lspconfig.rust_analyser.setup {}
end,
}