Compare commits
2 commits
b5ac576fa9
...
adcfb11f72
Author | SHA1 | Date | |
---|---|---|---|
|
adcfb11f72 | ||
|
e6b13ad7b6 |
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue