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