From 24cd5ff271af6eb7c714247de26cc2fee112de91 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Mon, 29 Jul 2024 14:52:08 +0100 Subject: [PATCH] Swap pyright for python-lsp-server + mypy --- home/emacs/default.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/home/emacs/default.nix b/home/emacs/default.nix index dedf7f12..c6058145 100644 --- a/home/emacs/default.nix +++ b/home/emacs/default.nix @@ -94,12 +94,20 @@ ## Language servers nil # Nix lsp lua-language-server - nodePackages.pyright nodePackages.typescript-language-server ## Interpreters (python3.withPackages - (ps: with ps; [tkinter numpy scipy xarray matplotlib])) + (ps: + with ps; [ + tkinter + python-lsp-server + mypy + numpy + scipy + xarray + matplotlib + ])) (luajit.withPackages (ps: [(ps.callPackage ./luarocks/scilua.nix {})])) ];