mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-25 10:11:54 -05:00
harmonize font sizes
This commit is contained in:
parent
4409b62926
commit
b217997f7a
|
@ -14,15 +14,6 @@ in {
|
||||||
transparent_background_colors = true;
|
transparent_background_colors = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
font = {
|
|
||||||
normal = {
|
|
||||||
family = cfg.theme.monospaceFont.name;
|
|
||||||
style = "Regular";
|
|
||||||
};
|
|
||||||
|
|
||||||
size = cfg.theme.monospaceFont.size + 1;
|
|
||||||
};
|
|
||||||
|
|
||||||
selection.save_to_clipboard = true;
|
selection.save_to_clipboard = true;
|
||||||
|
|
||||||
window = {
|
window = {
|
||||||
|
|
|
@ -82,13 +82,6 @@ in {
|
||||||
"window.menuBarVisibility" = "hidden";
|
"window.menuBarVisibility" = "hidden";
|
||||||
"window.titleBarStyle" = lib.mkDefault "native";
|
"window.titleBarStyle" = lib.mkDefault "native";
|
||||||
"window.zoomPerWindow" = false;
|
"window.zoomPerWindow" = false;
|
||||||
# "workbench.colorTheme" =
|
|
||||||
# if cfg.theme.darkMode
|
|
||||||
# then "Adwaita Dark"
|
|
||||||
# else "Adwaita Light";
|
|
||||||
# "workbench.iconTheme" = "vs-seti";
|
|
||||||
# "workbench.preferredDarkColorTheme" = "Adwaita Dark";
|
|
||||||
# "workbench.preferredLightColorTheme" = "Adwaita Light";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
extensions = with pkgs.vscode-extensions; [
|
extensions = with pkgs.vscode-extensions; [
|
||||||
|
@ -101,7 +94,6 @@ in {
|
||||||
ms-python.python
|
ms-python.python
|
||||||
ms-vscode.cpptools-extension-pack
|
ms-vscode.cpptools-extension-pack
|
||||||
oderwat.indent-rainbow
|
oderwat.indent-rainbow
|
||||||
piousdeer.adwaita-theme
|
|
||||||
rubymaniac.vscode-paste-and-indent
|
rubymaniac.vscode-paste-and-indent
|
||||||
rust-lang.rust-analyzer
|
rust-lang.rust-analyzer
|
||||||
tomoki1207.pdf
|
tomoki1207.pdf
|
||||||
|
|
|
@ -49,7 +49,7 @@ in {
|
||||||
auto_update = false;
|
auto_update = false;
|
||||||
autosave.after_delay.milliseconds = 1000;
|
autosave.after_delay.milliseconds = 1000;
|
||||||
buffer_font_family = config.stylix.fonts.monospace.name;
|
buffer_font_family = config.stylix.fonts.monospace.name;
|
||||||
buffer_font_size = config.stylix.fonts.sizes.applications + 3;
|
buffer_font_size = config.stylix.fonts.sizes.applications + 2;
|
||||||
current_line_highlight = "line";
|
current_line_highlight = "line";
|
||||||
|
|
||||||
indent_guides = {
|
indent_guides = {
|
||||||
|
@ -89,7 +89,7 @@ in {
|
||||||
metrics = false;
|
metrics = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
terminal.font_size = config.stylix.fonts.sizes.terminal + 3;
|
terminal.font_size = config.stylix.fonts.sizes.terminal + 2;
|
||||||
|
|
||||||
theme = {
|
theme = {
|
||||||
dark = "Adwaita Pastel Dark";
|
dark = "Adwaita Pastel Dark";
|
||||||
|
|
|
@ -46,6 +46,13 @@
|
||||||
name = "Vegur";
|
name = "Vegur";
|
||||||
package = pkgs.vegur;
|
package = pkgs.vegur;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
sizes = {
|
||||||
|
applications = 12;
|
||||||
|
desktop = 11;
|
||||||
|
popups = 12;
|
||||||
|
terminal = 13;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
opacity = {
|
opacity = {
|
||||||
|
|
Loading…
Reference in a new issue