Update fonts

main
mat ess 2022-11-20 10:38:04 -05:00
parent 7102375bd2
commit 736aca62e8
3 changed files with 9 additions and 7 deletions

View File

@ -6,13 +6,16 @@
# Fonts # Fonts
fonts.fontDir.enable = true; fonts.fontDir.enable = true;
fonts.fonts = with pkgs; [ fonts.fonts = with pkgs; [
borg-sans-mono
inter
recursive recursive
(nerdfonts.override { (nerdfonts.override {
fonts = [ fonts = [
"FantasqueSansMono" "CascadiaCode"
"JetBrainsMono" "iA-Writer"
"Inconsolata"
"FiraCode" "FiraCode"
"SourceCodePro" "Lilex"
]; ];
}) })
]; ];

View File

@ -33,6 +33,7 @@ let
color15 = white; color15 = white;
url_color = brightgreen; url_color = brightgreen;
}; };
font = "CaskaydiaCove Nerd Font";
in in
# }}} # }}}
{ {
@ -44,7 +45,7 @@ in
# General config ----------------------------------------------------------------------------- {{{ # General config ----------------------------------------------------------------------------- {{{
programs.kitty.settings = { programs.kitty.settings = {
font_family = "FiraCode Nerd Font"; font_family = font;
font_size = "14.0"; font_size = "14.0";
adjust_line_height = "120%"; adjust_line_height = "120%";
disable_ligatures = "cursor"; # disable ligatures when cursor is on them disable_ligatures = "cursor"; # disable ligatures when cursor is on them
@ -68,7 +69,7 @@ in
macos_option_as_alt = "both"; macos_option_as_alt = "both";
}; };
programs.kitty.extras.useSymbolsFromNerdFont = "FiraCode Nerd Font"; programs.kitty.extras.useSymbolsFromNerdFont = font;
# }}} # }}}
# Colors config ------------------------------------------------------------------------------ {{{ # Colors config ------------------------------------------------------------------------------ {{{

View File

@ -14,9 +14,7 @@
]; ];
directory.fish_style_pwd_dir_length = 1; # turn on fish directory truncation directory.fish_style_pwd_dir_length = 1; # turn on fish directory truncation
directory.truncation_length = 2; # number of directories not to truncate directory.truncation_length = 2; # number of directories not to truncate
# hostname.style = "bold green"; # don't like the default
memory_usage.disabled = true; # because it includes cached memory it's reported as full a lot memory_usage.disabled = true; # because it includes cached memory it's reported as full a lot
# username.style_user = "bold blue"; # don't like the default
}; };
# }}} # }}}
} }