Skip to content

Commit

Permalink
style: switch to iosevka font (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavSanchez authored Dec 18, 2024
1 parent 27fa698 commit 754d8f4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion home-manager/features/terminals/kitty/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
kitty = {
enable = true;
settings = {
font_family = "JetBrainsMono Nerd Font";
font_family = "IosevkaTerm Nerd Font Mono";
font_size = 13;
# macos_show_window_title_in = "none";
hide_window_decorations = if pkgs.stdenv.isDarwin then "titlebar-only" else "no";
Expand Down
2 changes: 1 addition & 1 deletion home-manager/features/terminals/rio/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ _: {
blur = true;
};
navigation.mode = "Plain";
fonts.family = "JetBrainsMono Nerd Font";
fonts.family = "IosevkaTerm Nerd Font Mono";
};
};
}
1 change: 1 addition & 0 deletions home-manager/features/terminals/wezterm/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ _: {
window_background_opacity = 0.8,
hide_tab_bar_if_only_one_tab = true,
color_scheme = 'Catppuccin Mocha',
font = wezterm.font 'IosevkaTerm Nerd Font Mono',
-- term = "wezterm",
-- font = wezterm.font 'JetBrainsMono Nerd Font',
window_decorations = "RESIZE",
Expand Down
6 changes: 4 additions & 2 deletions home-manager/features/vscode/settings.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ in
"editor.accessibilitySupport" = "off";
"editor.bracketPairColorization.enabled" = true;
"editor.cursorSmoothCaretAnimation" = "on";
"editor.fontFamily" = "'FiraCode Nerd Font', Menlo, Monaco, 'Courier New', monospace";
"editor.fontFamily" = "'Iosevka Nerd Font Mono' 'FiraCode Nerd Font', Menlo, Monaco, 'Courier New', monospace";
"editor.fontSize" = 13;
"editor.fontLigatures" = true;
"editor.formatOnPaste" = true;
"editor.formatOnSave" = true;
Expand Down Expand Up @@ -72,7 +73,8 @@ in
"**/.direnv" = true;
};
"terminal.external.osxExec" = "WezTerm.app";
"terminal.integrated.fontFamily" = "'JetBrainsMono Nerd Font'";
"terminal.integrated.fontFamily" = "'IosevkaTerm Nerd Font Mono'";
"terminal.integrated.fontSize" = 13;
"terminal.integrated.scrollback" = 5000;
"terminal.integrated.shellIntegration.enabled" = true;
"terminal.integrated.profiles.linux" = term-profiles;
Expand Down

0 comments on commit 754d8f4

Please sign in to comment.