From 1acba45d5bb2fdb0c5fb39ebaf84d8487c8c1db3 Mon Sep 17 00:00:00 2001 From: Hau Nguyen Date: Mon, 25 Mar 2024 16:30:07 +0700 Subject: [PATCH] config(wezterm): back to ibm --- data/fd/.ignore | 1 + data/wezterm/wezterm.lua | 15 ++++++++++++--- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/data/fd/.ignore b/data/fd/.ignore index 81d2de9..8e8c6a0 100644 --- a/data/fd/.ignore +++ b/data/fd/.ignore @@ -31,6 +31,7 @@ __pycache__ *.out # Software +~/.nix* ~/zig ~/qmk_firmware diff --git a/data/wezterm/wezterm.lua b/data/wezterm/wezterm.lua index 0aac940..ec10e5e 100644 --- a/data/wezterm/wezterm.lua +++ b/data/wezterm/wezterm.lua @@ -34,6 +34,15 @@ local font_hermit = { default_cursor_style = "SteadyBar", } +local font_ibm = { + font = wezterm.font({ + family = "IBM Plex Mono", + }), + font_size = 14.0, + line_height = 1.2, + default_cursor_style = "SteadyBar", +} + -- https://int10h.org/blog/2018/05/flexi-ibm-vga-scalable-truetype-font/ local font_flexi_ibm = { font = wezterm.font({ @@ -62,7 +71,7 @@ local font_flexi_ibm = { }), }, }, - font_size = 18.0, + font_size = 16.0, line_height = 1.2, default_cursor_style = "SteadyBlock", } @@ -72,7 +81,7 @@ local font_fairfax = { font = wezterm.font({ family = "Fairfax Hax HD", }), - font_size = 18.0, + font_size = 16.0, line_height = 1.2, default_cursor_style = "SteadyBlock", } @@ -97,7 +106,7 @@ local font_berkeley = { default_cursor_style = "SteadyBar", } -local current_font = font_iosevka +local current_font = font_ibm local current_color_scheme = "Catppuccin Mocha" return {