From 5374ebd9a2a11d6ef279f1fb42c78fe7e581d483 Mon Sep 17 00:00:00 2001 From: Frost-Phoenix <67cyril6767@gmail.com> Date: Wed, 6 Dec 2023 18:53:50 +0100 Subject: [PATCH] change vscodium settings --- modules/home/vscode/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/modules/home/vscode/default.nix b/modules/home/vscode/default.nix index 5bfdc0d..38deb63 100644 --- a/modules/home/vscode/default.nix +++ b/modules/home/vscode/default.nix @@ -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"; }; }; }