jetbrains mono & other font-related changes

This commit is contained in:
valerie 2024-09-25 19:25:44 -04:00
parent 3cc3e4a8e3
commit 619d43f541
Signed by: valnyx
GPG key ID: CC10324DD962CB7E
2 changed files with 16 additions and 14 deletions

View file

@ -12,18 +12,19 @@ config.hide_tab_bar_if_only_one_tab = true
-- })
config.font = wezterm.font_with_fallback({
-- { family = "Rec Mono Waves", weight = "Regular" },
{ family = "Monaspace Argon", weight = "Medium" },
-- { family = "Monaspace Argon", weight = "Medium" },
{ family = "Jetbrains Mono", weight = "Medium" },
-- "CozetteHiDpi",
"Symbols Nerd Font",
})
config.font_rules = {
{
italic = true,
font = wezterm.font_with_fallback({
{family = 'Monaspace Radon', weight = 'Regular'}
})
},
}
-- config.font_rules = {
-- {
-- italic = true,
-- font = wezterm.font_with_fallback({
-- {family = 'Monaspace Radon', weight = 'Regular'}
-- })
-- },
-- }
config.font_size = 13
config.cell_width = 0.95

View file

@ -129,7 +129,7 @@
settings = {
KbdInteractiveAuthentication = false;
PermitRootLogin = "no";
PasswordAuthentication = false;
PasswordAuthentication = true;
UseDns = true;
X11Forwarding = false;
};
@ -216,9 +216,9 @@
antialias = true;
defaultFonts = {
emoji = ["Noto Color Emoji"];
monospace = ["Monaspace Neon" "JuliaMono" "Symbols Nerd Font" "Noto Color Emoji"];
serif = ["Noto Serif" "Noto Color Emoji"];
sansSerif = ["Overpass" "Nunito" "Noto Color Emoji"];
monospace = ["Jetbrains Mono" "Monaspace Neon" "JuliaMono" "Symbols Nerd Font" "Noto Color Emoji"];
serif = ["Alegreya" "Petrona" "Noto Serif" "Noto Color Emoji"];
sansSerif = ["Atkinson Hyperlegible" "Overpass" "Nunito" "Noto Color Emoji"];
};
hinting = {
enable = true;
@ -237,9 +237,10 @@
packages = [
pkgs.noto-fonts
pkgs.noto-fonts-emoji
pkgs.jetbrains-mono
pkgs.material-design-icons
(pkgs.google-fonts.override {fonts = ["Overpass" "Nunito"];})
(pkgs.google-fonts.override {fonts = ["Overpass" "Nunito" "Alegreya" "Petrona" "Atkinson Hyperlegible"];})
(pkgs.unstable.nerdfonts.override {fonts = ["NerdFontsSymbolsOnly"];})
pkgs.monaspace
];