From d3fbbef0c0e50efad17e63461e96b651aab3c37f Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Tue, 19 Dec 2023 17:21:53 +0000 Subject: [PATCH] Change how pylsp is installed, add ruff plugin --- home/emacs.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/home/emacs.nix b/home/emacs.nix index 8d420325..e0c2c188 100644 --- a/home/emacs.nix +++ b/home/emacs.nix @@ -177,8 +177,11 @@ shellcheck rust-analyzer luajitPackages.lua-lsp - python3Packages.python-lsp-server nodePackages.yaml-language-server nodePackages.bash-language-server + + # Python... + (python3.withPackages + (ps: with ps; [ python-lsp-server python-lsp-ruff numpy scipy xarray ])) ]; }