Update fonts

main
mat ess 2022-12-17 23:08:37 -05:00
parent 5b631ee24d
commit a4082f54c0
3 changed files with 8 additions and 12 deletions

View File

@ -7,20 +7,14 @@
fonts.fontDir.enable = true; fonts.fontDir.enable = true;
fonts.fonts = with pkgs; [ fonts.fonts = with pkgs; [
borg-sans-mono borg-sans-mono
cascadia-code
ia-writer-family ia-writer-family
ibm-plex
inter inter
recursive recursive
source-sans-pro source-sans-pro
source-serif-pro source-serif-pro
(nerdfonts.override { (nerdfonts.override { fonts = [ "CascadiaCode" ]; })
enableWindowsFonts = false;
fonts = [
"CascadiaCode"
"Inconsolata"
"FiraCode"
"Lilex"
];
})
]; ];
# Keyboard # Keyboard

View File

@ -24,7 +24,6 @@
homebrew.taps = [ homebrew.taps = [
"homebrew/cask" "homebrew/cask"
"homebrew/cask-drivers" "homebrew/cask-drivers"
"homebrew/cask-fonts"
"homebrew/cask-versions" "homebrew/cask-versions"
"homebrew/core" "homebrew/core"
"homebrew/services" "homebrew/services"

View File

@ -32,7 +32,7 @@ let
color15 = white; color15 = white;
url_color = brightgreen; url_color = brightgreen;
}; };
font = "CaskaydiaCove Nerd Font"; font = "Cascadia Code PL";
in in
# }}} # }}}
{ {
@ -45,6 +45,9 @@ in
programs.kitty.settings = { programs.kitty.settings = {
font_family = font; font_family = font;
bold_font = "${font} Bold";
italic_font = "${font} Italic";
bold_italic_font = "${font} Bold Italic";
font_size = "15.0"; font_size = "15.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 +71,7 @@ in
macos_option_as_alt = "both"; macos_option_as_alt = "both";
}; };
programs.kitty.extras.useSymbolsFromNerdFont = font; programs.kitty.extras.useSymbolsFromNerdFont = "CaskaydiaCove Nerd Font";
# }}} # }}}
# Colors config ------------------------------------------------------------------------------ {{{ # Colors config ------------------------------------------------------------------------------ {{{