From 91a30d7f46de14841a9897c43d6de2af068e446a Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Wed, 24 Jan 2024 09:19:15 +0000 Subject: [PATCH] Swap pyright back for python-lsp-server Add python-lsp-ruff plugin but NOT mypy as performance is horrible, use mypy as standalone tool only Remove some unused LSPs/linters/formatters --- system/emacs.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/system/emacs.nix b/system/emacs.nix index 402560b4..b1ff6ab5 100644 --- a/system/emacs.nix +++ b/system/emacs.nix @@ -23,11 +23,7 @@ mupdf poppler_utils - # Linters - nodePackages.stylelint - # Formatters - nodePackages.prettier nixfmt black isort @@ -43,8 +39,6 @@ shellcheck rust-analyzer luajitPackages.lua-lsp - nodePackages.pyright - nodePackages.yaml-language-server - nodePackages.bash-language-server + (python3.withPackages (ps: with ps; [ python-lsp-server python-lsp-ruff ])) ]; }