Finally fix constant font issues

Needed to set nerd-icons-font-family to match font used so symbols
display properly
This commit is contained in:
Evie Litherland-Smith 2023-10-15 07:25:10 +01:00
parent 2a42c14fb5
commit c740f8b101
2 changed files with 10 additions and 2 deletions

View file

@ -12,9 +12,11 @@
(setq user-full-name "Evie Litherland-Smith" (setq user-full-name "Evie Litherland-Smith"
user-mail-address "e.litherlandsmith@proton.me" user-mail-address "e.litherlandsmith@proton.me"
doom-font (font-spec :family "FiraCode Nerd Font" :size 16 :weight 'regular) doom-font "FiraCode Nerd Font-14"
doom-theme 'doom-tokyo-night doom-symbol-fallback-font-families '("Material Icons" "FontAwesome" "Weather Icons")
doom-emoji-fallback-font-families '("Noto Color Emoji" "Noto Emoji") doom-emoji-fallback-font-families '("Noto Color Emoji" "Noto Emoji")
nerd-icons-font-family "FiraCode Nerd Font"
doom-theme 'doom-tokyo-night
display-line-numbers-type 'relative display-line-numbers-type 'relative
org-directory "~/Notes/" org-directory "~/Notes/"
+latex-viewers '(pdf-tools) +latex-viewers '(pdf-tools)

View file

@ -43,6 +43,12 @@
name = "Fira Sans"; name = "Fira Sans";
package = pkgs.fira; package = pkgs.fira;
}; };
sizes = {
applications = 14;
desktop = 12;
popups = 12;
terminal = 14;
};
}; };
homeManagerIntegration.followSystem = true; homeManagerIntegration.followSystem = true;
}; };