Compare commits

...

2 commits

View file

@ -189,6 +189,7 @@ let
gitui gitui
lazygit lazygit
pre-commit pre-commit
scriv
# Haskell # Haskell
ghc ghc
@ -344,7 +345,11 @@ in
} }
]; ];
userSettings = let userSettings = let
defaultPython = pkgs.python3.withPackages (ps: [ps.jedi ps.jedi-language-server ps.pip ps.black ps.mypy]); defaultPython = pkgs.python3.withPackages (ps: [
ps.jedi ps.jedi-language-server
ps.pip ps.setuptools # for pkg_resources
ps.black ps.mypy
]);
in { in {
"editor.fontLigatures" = true; "editor.fontLigatures" = true;
"window.autoDetectColorScheme" = true; "window.autoDetectColorScheme" = true;
@ -377,6 +382,9 @@ in
"black-formatter.importStrategy" = "fromEnvironment"; "black-formatter.importStrategy" = "fromEnvironment";
"mypy-type-checker.path" = ["${pkgs.python3Packages.mypy}/bin/mypy"]; "mypy-type-checker.path" = ["${pkgs.python3Packages.mypy}/bin/mypy"];
"mypy-type-checker.importStrategy" = "fromEnvironment"; "mypy-type-checker.importStrategy" = "fromEnvironment";
"mypy-type-checker.args" = [
"--ignore-missing-imports"
];
"gitlens.telemetry.enabled" = false; "gitlens.telemetry.enabled" = false;
"vim.highlightedyank.enable" = true; "vim.highlightedyank.enable" = true;
"vim.history" = 500; "vim.history" = 500;