Compare commits

..

No commits in common. "12f8c73870eb93d5780f1b3354a83c4c6a61e521" and "7574890c3c29593cddb66091c1fffc4e7826df8f" have entirely different histories.

2 changed files with 9 additions and 10 deletions

12
flake.lock generated
View file

@ -195,11 +195,11 @@
}, },
"nixos-unstable": { "nixos-unstable": {
"locked": { "locked": {
"lastModified": 1758427187, "lastModified": 1758277210,
"narHash": "sha256-pHpxZ/IyCwoTQPtFIAG2QaxuSm8jWzrzBGjwQZIttJc=", "narHash": "sha256-iCGWf/LTy+aY0zFu8q12lK8KuZp7yvdhStehhyX1v8w=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "554be6495561ff07b6c724047bdd7e0716aa7b46", "rev": "8eaee110344796db060382e15d3af0a9fc396e0e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -243,11 +243,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1758589230, "lastModified": 1758346548,
"narHash": "sha256-zMTCFGe8aVGTEr2RqUi/QzC1nOIQ0N1HRsbqB4f646k=", "narHash": "sha256-afXE7AJ7MY6wY1pg/Y6UPHNYPy5GtUKeBkrZZ/gC71E=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "d1d883129b193f0b495d75c148c2c3a7d95789a0", "rev": "b2a3852bd078e68dd2b3dfa8c00c67af1f0a7d20",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -58,7 +58,6 @@
]); ]);
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";
@ -91,12 +90,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" = lib.getExe defaultPython; "python.defaultInterpreterPath" = "${defaultPython}/bin/python";
"mypy-type-checker.path" = [ "${pkgs.python3Packages.mypy}/bin/dmypy" ]; "mypy-type-checker.path" = [ "${pkgs.python3Packages.mypy}/bin/mypy" ];
"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;