Update codium
This commit is contained in:
parent
cc31c44b76
commit
d0b35e3aba
1 changed files with 38 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
{ config, pkgs, ... }: {
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
enable = false;
|
||||
package = pkgs.vscodium;
|
||||
enableUpdateCheck = false;
|
||||
enableExtensionUpdateCheck = false;
|
||||
|
@ -13,5 +13,42 @@
|
|||
# Themes
|
||||
enkia.tokyo-night
|
||||
];
|
||||
userSettings = {
|
||||
# Theming:
|
||||
"window.autoDetectColorScheme" = true;
|
||||
"workbench.preferredLightColorTheme" = "Tokyo Night Light";
|
||||
"workbench.preferredDarkColorTheme" = "Tokyo Night";
|
||||
"workbench.colorTheme" = "Tokyo Night";
|
||||
"workbench.iconTheme" = "";
|
||||
|
||||
# Workbench
|
||||
"workbench.startupEditor" = "none";
|
||||
"diffEditor.ignoreTrimWhitespace" = false;
|
||||
"workbench.editor.autoLockGroups" = {
|
||||
"mainThreadWebview-markdown.preview" = true;
|
||||
};
|
||||
"editor.fontFamily" = "JetBrainsMono Regular";
|
||||
"editor.fontLigatures" = true;
|
||||
|
||||
# Telemetry =
|
||||
"redhat.telemetry.enabled" = false;
|
||||
"telemetry.telemetryLevel" = "off";
|
||||
|
||||
# Git =
|
||||
"git.enableSmartCommit" = true;
|
||||
"git.confirmSync" = false;
|
||||
"git.autofetch" = true;
|
||||
|
||||
# Language Specific
|
||||
# Python =
|
||||
"python.diagnostics.sourceMapsEnabled" = true;
|
||||
"python.linting.pylintEnabled" = true;
|
||||
"python.linting.pylintArgs" = [
|
||||
"--rcfile=~/.config/pylintrc"
|
||||
];
|
||||
|
||||
# Rust
|
||||
"rust-analyzer.cargo.buildScripts.overrideCommand" = null;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue