mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
profiles/editors: add VS Code pre-set settings
This commit is contained in:
parent
61f8457584
commit
df58c17524
@ -137,6 +137,30 @@ in {
|
||||
|
||||
# Yay! Thank you!
|
||||
mutableExtensionsDir = true;
|
||||
|
||||
userSettings = {
|
||||
# Editor configurations.
|
||||
"editor.fontFamily" = "monospace";
|
||||
"editor.fontSize" = 16;
|
||||
"editor.cursorStyle" = "block";
|
||||
"editor.minimap.renderCharacters" = false;
|
||||
"workbench.iconTheme" = "vscode-icons";
|
||||
"window.autoDetectColorScheme" = true;
|
||||
"accessibility.dimUnfocused.enable" = true;
|
||||
"accessibility.dimUnfocused.opacity" = 0.35;
|
||||
|
||||
# Putting some conveniences.
|
||||
"files.autoSave" = "off";
|
||||
"update.showReleaseNotes" = false;
|
||||
"extensions.autoUpdate" = "onlyEnabledExtensions";
|
||||
"github.copilot.enable"."*" = false;
|
||||
|
||||
# Extensions settings.
|
||||
"direnv.restart.automatic" = true;
|
||||
"gitlens.showWhatsNewAfterUpgrade" = false;
|
||||
"gitlens.showWelcomeOnInstall" = false;
|
||||
"gitlens.plusFeatures.enabled" = false;
|
||||
};
|
||||
};
|
||||
|
||||
xdg.mimeApps.defaultApplications = {
|
||||
|
Loading…
Reference in New Issue
Block a user