codium: adjust python extension settings to use Jedi

This commit is contained in:
Trolli Schmittlauch 2023-09-26 11:54:21 +02:00
parent 3724058439
commit 651b93da89
2 changed files with 7 additions and 2 deletions

View file

@ -20,6 +20,9 @@
# system-wide SSH configuration, used by nix-daemon for remote builders # system-wide SSH configuration, used by nix-daemon for remote builders
# show hidden files
system.defaults.NSGlobalDomain.AppleShowAllFiles = true;
# Used for backwards compatibility, please read the changelog before changing. # Used for backwards compatibility, please read the changelog before changing.
# $ darwin-rebuild changelog # $ darwin-rebuild changelog
system.stateVersion = 4; system.stateVersion = 4;

View file

@ -346,13 +346,15 @@ in
"!Module" "!Module"
]; ];
}; };
"python.languageServer" = "Jedi"; # don't use proprietary pylance server
"python.formatting.blackPath" = "/Users/os/.nix-profile/bin/black";
"gitlens.telemetry.enabled" = false;
"vim.highlightedyank.enable" = true; "vim.highlightedyank.enable" = true;
"vim.history" = 500; "vim.history" = 500;
"vim.neovimUseConfigFile" = true; "vim.neovimUseConfigFile" = true;
"vim.enableNeovim" = true; "vim.enableNeovim" = true;
"python.formatting.blackPath" = "/Users/os/.nix-profile/bin/black";
"git.suggestSmartCommit" = false; "git.suggestSmartCommit" = false;
"editor.rulers" = [ 88 ]; "editor.rulers" = [ 79 ];
"vim.useSystemClipboard" = true; "vim.useSystemClipboard" = true;
"vim.smartRelativeLine" = true; "vim.smartRelativeLine" = true;
"diffEditor.ignoreTrimWhitespace" = false; "diffEditor.ignoreTrimWhitespace" = false;