mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-25 07:31:54 -05:00
vsCodium: set font size from module
This commit is contained in:
parent
f934b9bbc9
commit
4c0f960c9c
|
@ -35,7 +35,7 @@ in {
|
|||
userSettings = {
|
||||
"diffEditor.ignoreTrimWhitespace" = false;
|
||||
"editor.fontFamily" = "'${cfg.theme.monospaceFont.name} ${toString cfg.theme.monospaceFont.size}', 'monospace', monospace";
|
||||
"editor.fontSize" = lib.mkDefault 14;
|
||||
"editor.fontSize" = cfg.theme.monospaceFont.size + 3;
|
||||
"editor.formatOnPaste" = true;
|
||||
"editor.formatOnSave" = true;
|
||||
"editor.formatOnType" = true;
|
||||
|
@ -78,7 +78,7 @@ in {
|
|||
"shellformat.flag" = "-i 4";
|
||||
|
||||
"terminal.external.linuxExec" = lib.getExe cfg.defaultApps.terminal;
|
||||
"terminal.integrated.fontSize" = lib.mkDefault 14;
|
||||
"terminal.integrated.fontSize" = cfg.theme.monospaceFont.size + 3;
|
||||
"update.mode" = "none";
|
||||
"window.menuBarVisibility" = "hidden";
|
||||
"window.titleBarStyle" = lib.mkDefault "native";
|
||||
|
|
Loading…
Reference in a new issue