diff options
| author | xengineering <me@xengineering.eu> | 2026-07-09 08:57:33 +0200 |
|---|---|---|
| committer | xengineering <me@xengineering.eu> | 2026-07-09 08:57:33 +0200 |
| commit | 97e2fff1b56b0f088a589b3f89ace64c321d6e4c (patch) | |
| tree | 57d9ce510f50a2ad0eff5d90f96d84cde8a9e731 | |
| parent | 7e47e2b825bb162b19bb2dad6418a9768c49e778 (diff) | |
| download | dotfiles-97e2fff1b56b0f088a589b3f89ace64c321d6e4c.tar dotfiles-97e2fff1b56b0f088a589b3f89ace64c321d6e4c.tar.zst dotfiles-97e2fff1b56b0f088a589b3f89ace64c321d6e4c.zip | |
nvim: Switch to pylsp
This language server is available on Arch Linux as python-lsp-server and
on Debian as python3-pylsp and supported by nvim-lspconfig.
Thus it is a perfect match to have one language server which is portable
across these setups.
| -rw-r--r-- | nvim/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/init.lua b/nvim/init.lua index 4aa5a22..0b44735 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -2,7 +2,7 @@ local lsp = require'lspconfig' local servers = { 'clangd', - 'pyright', + 'pylsp', 'gopls', 'zls', 'dartls', |
