diff --git a/home/home.nix b/home/home.nix index 9d08c03..f33404e 100644 --- a/home/home.nix +++ b/home/home.nix @@ -238,7 +238,6 @@ let numpy matplotlib jedi - jedi-language-server black flake8 mypy @@ -343,13 +342,11 @@ in sha256 = "sha256-lJG0RRUUMhQGs2a6oBtoqt+uY1kSJ0+cbmaP07hNh2o="; } ]; - userSettings = let - defaultPython = pkgs.python3.withPackages (ps: [ps.jedi ps.jedi-language-server ps.pip ps.black ps.mypy]); - in { + userSettings = { "editor.fontLigatures" = true; "window.autoDetectColorScheme" = true; - "workbench.preferredDarkColorTheme" = "Default Dark Modern"; - "workbench.preferredLightColorTheme" = "Default Light Modern"; + "workbench.preferredDarkColorScheme" = "Default Dark Modern"; + "workbench.preferredLightColorScheme" = "Default Light Modern"; "[nix]" = { "editor.insertSpaces" = true; "editor.tabSize" = 2; @@ -372,7 +369,6 @@ in "editor.formatOnSave" = true; }; "python.languageServer" = "Jedi"; # don't use proprietary pylance server - "python.defaultInterpreterPath" = "${defaultPython}/bin/python"; "black-formatter.path" = ["${pkgs.python3Packages.black}/bin/black"]; "black-formatter.importStrategy" = "fromEnvironment"; "mypy-type-checker.path" = ["${pkgs.python3Packages.mypy}/bin/mypy"];