diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-10-23 17:43:14 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-10-23 17:43:14 +0200 |
commit | 25622a314568bed9c827a01ef6c5561c36cd735b (patch) | |
tree | e4155bbc036301334ccab651e19776554da50cd8 | |
parent | 3e66bc5172b5adc6acde421605b1b9d14f1b1f74 (diff) |
Add LSP for Python and Scala
-rw-r--r-- | .config/nvim/lua/lsp_conf.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/nvim/lua/lsp_conf.lua b/.config/nvim/lua/lsp_conf.lua index 036f331..f33b0e1 100644 --- a/.config/nvim/lua/lsp_conf.lua +++ b/.config/nvim/lua/lsp_conf.lua @@ -33,7 +33,7 @@ local common_on_attach = function(client, bufnr) end -- LSP servers setup -local servers = { 'pyright', 'rust_analyzer', 'clangd', 'gopls', 'ocamllsp', 'jdtls' } +local servers = { 'ruff_lsp', 'rust_analyzer', 'clangd', 'gopls', 'ocamllsp', 'jdtls', 'metals'} capabilities.offsetEncoding = { "utf-16" } |