change vscodium settings

This commit is contained in:
Frost-Phoenix 2023-12-06 18:53:50 +01:00
parent c5977b4374
commit 5374ebd9a2

View file

@ -12,19 +12,24 @@
userSettings = {
"update.mode" = "none";
"extensions.autoUpdate" = false; # This stuff fixes vscode freaking out when theres an update
"window.titleBarStyle" = "custom"; # needed otherwise vscode crashes, see https://github.com/NixOS/nixpkgs/issues/246509
"window.menuBarVisibility" = "toggle";
"editor.fontFamily" = "'JetBrainsMono Nerd Font', 'SymbolsNerdFont', 'monospace', monospace";
"terminal.integrated.fontFamily" = "'JetBrainsMono Nerd Font', 'SymbolsNerdFont'";
"editor.fontSize" = "16";
"workbench.colorTheme" = "Catppuccin Mocha";
"workbench.iconTheme" = "catppuccin-mocha";
"vsicons.dontShowNewVersionMessage" = true;
"editor.fontLigatures" = true;
"editor.minimap.enabled" = false;
"window.titleBarStyle" = "custom"; # needed otherwise vscode crashes, see https://github.com/NixOS/nixpkgs/issues/246509
"editor.mouseWheelZoom" = true;
# keyboard shortcuts
"editor.action.commentLine" = "ctrl+d";
"workbench.action.files.saveFiles" = "ctrl+s";
};
};
}