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({ config.font = wezterm.font_with_fallback({
-- { family = "Rec Mono Waves", weight = "Regular" }, -- { family = "Rec Mono Waves", weight = "Regular" },
{ family = "Monaspace Argon", weight = "Medium" }, -- { family = "Monaspace Argon", weight = "Medium" },
{ family = "Jetbrains Mono", weight = "Medium" },
-- "CozetteHiDpi", -- "CozetteHiDpi",
"Symbols Nerd Font", "Symbols Nerd Font",
}) })
config.font_rules = { -- config.font_rules = {
{ -- {
italic = true, -- italic = true,
font = wezterm.font_with_fallback({ -- font = wezterm.font_with_fallback({
{family = 'Monaspace Radon', weight = 'Regular'} -- {family = 'Monaspace Radon', weight = 'Regular'}
}) -- })
}, -- },
} -- }
config.font_size = 13 config.font_size = 13
config.cell_width = 0.95 config.cell_width = 0.95

View file

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