Compare commits
3 commits
86199f194d
...
ec32be92c7
| Author | SHA1 | Date | |
|---|---|---|---|
| ec32be92c7 | |||
| 0f370e4bcf | |||
| 213cb3a10d |
1 changed files with 5 additions and 10 deletions
|
|
@ -15,6 +15,7 @@
|
||||||
with pkgs.vscode-extensions;
|
with pkgs.vscode-extensions;
|
||||||
[
|
[
|
||||||
ms-python.python
|
ms-python.python
|
||||||
|
ms-python.mypy-type-checker
|
||||||
charliermarsh.ruff
|
charliermarsh.ruff
|
||||||
vscodevim.vim
|
vscodevim.vim
|
||||||
yzhang.markdown-all-in-one
|
yzhang.markdown-all-in-one
|
||||||
|
|
@ -32,17 +33,11 @@
|
||||||
sha256 = "sha256-Jsfa1SrK1H0QwlJPEBdrb0gfGiIYoXdtIP32/4g+ceM=";
|
sha256 = "sha256-Jsfa1SrK1H0QwlJPEBdrb0gfGiIYoXdtIP32/4g+ceM=";
|
||||||
}
|
}
|
||||||
# TODO: probably available in nixpkgs soonish?
|
# TODO: probably available in nixpkgs soonish?
|
||||||
{
|
|
||||||
name = "mypy-type-checker";
|
|
||||||
publisher = "ms-python";
|
|
||||||
version = "2023.3.12681020";
|
|
||||||
sha256 = "sha256-rhed7CQlvxksVCGc9nPU2oYQWtXcAV5TzuG63e8Y3zM=";
|
|
||||||
}
|
|
||||||
{
|
{
|
||||||
name = "vscode-pets";
|
name = "vscode-pets";
|
||||||
publisher = "tonybaloney";
|
publisher = "tonybaloney";
|
||||||
version = "1.25.1";
|
version = "1.34.0";
|
||||||
sha256 = "sha256-as3e2LzKBSsiGs/UGIZ06XqbLh37irDUaCzslqITEJQ=";
|
sha256 = "sha256-+4D9QKMB0BsIm8qy4ZNC5H87V21wgLD7ztrYJ/R3UJQ=";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
userSettings =
|
userSettings =
|
||||||
|
|
@ -93,9 +88,9 @@
|
||||||
"python.experiments.enabled" = false;
|
"python.experiments.enabled" = false;
|
||||||
"python.languageServer" = "Jedi"; # don't use proprietary pylance server
|
"python.languageServer" = "Jedi"; # don't use proprietary pylance server
|
||||||
"python.defaultInterpreterPath" = lib.getExe defaultPython;
|
"python.defaultInterpreterPath" = lib.getExe defaultPython;
|
||||||
"mypy-type-checker.path" = [ "${pkgs.python3Packages.mypy}/bin/dmypy" ];
|
#"mypy-type-checker.path" = [ "${pkgs.python3Packages.mypy}/bin/dmypy" ];
|
||||||
"mypy-type-checker.preferDaemon" = true;
|
"mypy-type-checker.preferDaemon" = true;
|
||||||
"mypy-type-checker.importStrategy" = "fromEnvironment";
|
#"mypy-type-checker.importStrategy" = "fromEnvironment";
|
||||||
"mypy-type-checker.args" = [ "--ignore-missing-imports" ];
|
"mypy-type-checker.args" = [ "--ignore-missing-imports" ];
|
||||||
"ruff.path" = [ (lib.getExe pkgs.ruff) ];
|
"ruff.path" = [ (lib.getExe pkgs.ruff) ];
|
||||||
"gitlens.telemetry.enabled" = false;
|
"gitlens.telemetry.enabled" = false;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue