mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-04-16 12:19:10 +00:00
home-manager/suites/editors: update VS Code profile settings
This commit is contained in:
parent
ed45b34b50
commit
51f2b966de
@ -38,41 +38,44 @@ in {
|
|||||||
(lib.mkIf cfg.vscode.enable {
|
(lib.mkIf cfg.vscode.enable {
|
||||||
programs.vscode = {
|
programs.vscode = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extensions = with pkgs.vscode-extensions; [
|
|
||||||
# All the niceties for developmenties.
|
|
||||||
ms-vscode-remote.vscode-remote-extensionpack
|
|
||||||
ms-vsliveshare.vsliveshare
|
|
||||||
tailscale.vscode-tailscale
|
|
||||||
|
|
||||||
# The other niceties.
|
|
||||||
vscode-icons-team.vscode-icons
|
|
||||||
];
|
|
||||||
|
|
||||||
# Yay! Thank you!
|
# Yay! Thank you!
|
||||||
mutableExtensionsDir = true;
|
mutableExtensionsDir = true;
|
||||||
|
|
||||||
userSettings = {
|
profiles.default = {
|
||||||
# Editor configurations.
|
userSettings = {
|
||||||
"editor.fontFamily" = "monospace";
|
# Editor configurations.
|
||||||
"editor.fontSize" = 16;
|
"editor.fontFamily" = "monospace";
|
||||||
"editor.cursorStyle" = "block";
|
"editor.fontSize" = 16;
|
||||||
"editor.minimap.renderCharacters" = false;
|
"editor.cursorStyle" = "block";
|
||||||
"workbench.iconTheme" = "vscode-icons";
|
"editor.minimap.renderCharacters" = false;
|
||||||
"window.autoDetectColorScheme" = true;
|
"workbench.iconTheme" = "vscode-icons";
|
||||||
"accessibility.dimUnfocused.enable" = true;
|
"window.autoDetectColorScheme" = true;
|
||||||
"accessibility.dimUnfocused.opacity" = 0.35;
|
"accessibility.dimUnfocused.enable" = true;
|
||||||
|
"accessibility.dimUnfocused.opacity" = 0.35;
|
||||||
|
|
||||||
# Putting some conveniences.
|
# Putting some conveniences.
|
||||||
"files.autoSave" = "off";
|
"files.autoSave" = "off";
|
||||||
"update.showReleaseNotes" = false;
|
"update.showReleaseNotes" = false;
|
||||||
"extensions.autoUpdate" = "onlyEnabledExtensions";
|
"extensions.autoUpdate" = "onlyEnabledExtensions";
|
||||||
"github.copilot.enable"."*" = false;
|
"github.copilot.enable"."*" = false;
|
||||||
|
|
||||||
# Extensions settings.
|
# Extensions settings.
|
||||||
"direnv.restart.automatic" = true;
|
"direnv.restart.automatic" = true;
|
||||||
"gitlens.showWhatsNewAfterUpgrade" = false;
|
"gitlens.showWhatsNewAfterUpgrade" = false;
|
||||||
"gitlens.showWelcomeOnInstall" = false;
|
"gitlens.showWelcomeOnInstall" = false;
|
||||||
"gitlens.plusFeatures.enabled" = false;
|
"gitlens.plusFeatures.enabled" = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
extensions = with pkgs.vscode-extensions; [
|
||||||
|
# All the niceties for developmenties.
|
||||||
|
ms-vscode-remote.vscode-remote-extensionpack
|
||||||
|
ms-vsliveshare.vsliveshare
|
||||||
|
tailscale.vscode-tailscale
|
||||||
|
|
||||||
|
# The other niceties.
|
||||||
|
vscode-icons-team.vscode-icons
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user