Compare commits
2 commits
7574890c3c
...
12f8c73870
| Author | SHA1 | Date | |
|---|---|---|---|
| 12f8c73870 | |||
| 49484e5729 |
2 changed files with 10 additions and 9 deletions
12
flake.lock
generated
12
flake.lock
generated
|
|
@ -195,11 +195,11 @@
|
||||||
},
|
},
|
||||||
"nixos-unstable": {
|
"nixos-unstable": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1758277210,
|
"lastModified": 1758427187,
|
||||||
"narHash": "sha256-iCGWf/LTy+aY0zFu8q12lK8KuZp7yvdhStehhyX1v8w=",
|
"narHash": "sha256-pHpxZ/IyCwoTQPtFIAG2QaxuSm8jWzrzBGjwQZIttJc=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "8eaee110344796db060382e15d3af0a9fc396e0e",
|
"rev": "554be6495561ff07b6c724047bdd7e0716aa7b46",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -243,11 +243,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs_2": {
|
"nixpkgs_2": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1758346548,
|
"lastModified": 1758589230,
|
||||||
"narHash": "sha256-afXE7AJ7MY6wY1pg/Y6UPHNYPy5GtUKeBkrZZ/gC71E=",
|
"narHash": "sha256-zMTCFGe8aVGTEr2RqUi/QzC1nOIQ0N1HRsbqB4f646k=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "b2a3852bd078e68dd2b3dfa8c00c67af1f0a7d20",
|
"rev": "d1d883129b193f0b495d75c148c2c3a7d95789a0",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
||||||
|
|
@ -58,6 +58,7 @@
|
||||||
]);
|
]);
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
"telemetry.enableTelemetry" = false; # might not be needed for Codium
|
||||||
"editor.fontLigatures" = true;
|
"editor.fontLigatures" = true;
|
||||||
"editor.accessibilitySupport" = false; # prevent asking
|
"editor.accessibilitySupport" = false; # prevent asking
|
||||||
"editor.cursorBlinking" = "phase";
|
"editor.cursorBlinking" = "phase";
|
||||||
|
|
@ -90,12 +91,12 @@
|
||||||
};
|
};
|
||||||
"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" = "${defaultPython}/bin/python";
|
"python.defaultInterpreterPath" = lib.getExe defaultPython;
|
||||||
"mypy-type-checker.path" = [ "${pkgs.python3Packages.mypy}/bin/mypy" ];
|
"mypy-type-checker.path" = [ "${pkgs.python3Packages.mypy}/bin/dmypy" ];
|
||||||
|
"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) ];
|
||||||
"ruff.importStrategy" = "fromEnvironment";
|
|
||||||
"gitlens.telemetry.enabled" = false;
|
"gitlens.telemetry.enabled" = false;
|
||||||
"vim.highlightedyank.enable" = true;
|
"vim.highlightedyank.enable" = true;
|
||||||
"vim.history" = 500;
|
"vim.history" = 500;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue