From f85afcc39de83413c9c74de1781d5d1bbf7ef3d6 Mon Sep 17 00:00:00 2001 From: tpAtalas Date: Thu, 27 Jul 2023 15:20:39 -0500 Subject: [PATCH 1/5] refactor: Update the fonts within wezterm configs --- wezterm/wezterm.lua | 30 ++++++++++++++++++++++++------ 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/wezterm/wezterm.lua b/wezterm/wezterm.lua index 8b10b1c..937cf89 100644 --- a/wezterm/wezterm.lua +++ b/wezterm/wezterm.lua @@ -39,9 +39,26 @@ return { -- Font -- More NerdFont: https://www.nerdfonts.com/font-downloads font = wezterm.font_with_fallback({ - { family = "JetBrainsMonoNL Nerd Font", weight = "Medium", stretch = "ExtraExpanded" }, - { family = "Iosevka Nerd Font", harfbuzz_features = { "calt=0", "clig=0", "liga=0" }, weight = "DemiBold" }, - { family = "FiraCode Nerd Font", weight = "Regular" }, + { + family = "JetBrainsMonoNL Nerd Font", + weight = "Medium", + stretch = "Expanded", + italic = false, + }, + { + family = "FiraCode Nerd Font", + harfbuzz_features = { "calt=0", "clig=0", "liga=0" }, + weight = "Regular", + stretch = "Expanded", + italic = false, + }, + { + family = "Iosevka Nerd Font", + harfbuzz_features = { "calt=0", "clig=0", "liga=0" }, + weight = "DemiBold", + stretch = "Expanded", + italic = false, + }, "Symbols Nerd Font", }), font_shaper = "Harfbuzz", @@ -50,6 +67,8 @@ return { font_size = 14, cell_width = 1.0, line_height = 1.3, + -- freetype_load_target = "Normal", + -- freetype_load_flags = "NO_HINTING", foreground_text_hsb = { hue = 1.0, saturation = 1.0, @@ -57,11 +76,11 @@ return { }, window_background_opacity = 0.5, macos_window_background_blur = 50, - underline_position = -6, + underline_position = -5, underline_thickness = 1, window_decorations = "INTEGRATED_BUTTONS", window_padding = { - left = 1, + left = 0, right = 0, top = 3, bottom = 0, @@ -83,7 +102,6 @@ return { }, window_close_confirmation = "NeverPrompt", use_resize_increments = false, - -- dpi = 144, -- Tab_bar enable_tab_bar = true, use_fancy_tab_bar = true, From a8b13b6a37837f4f63df5819a35a680f4847a9fa Mon Sep 17 00:00:00 2001 From: tpAtalas Date: Fri, 11 Aug 2023 10:53:12 -0500 Subject: [PATCH 2/5] refactor: Minor adjustment on font setting Adjust font setting due to unstable font lining. --- wezterm/wezterm.lua | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/wezterm/wezterm.lua b/wezterm/wezterm.lua index 937cf89..d23c06e 100644 --- a/wezterm/wezterm.lua +++ b/wezterm/wezterm.lua @@ -41,8 +41,7 @@ return { font = wezterm.font_with_fallback({ { family = "JetBrainsMonoNL Nerd Font", - weight = "Medium", - stretch = "Expanded", + weight = "DemiBold", italic = false, }, { @@ -68,7 +67,7 @@ return { cell_width = 1.0, line_height = 1.3, -- freetype_load_target = "Normal", - -- freetype_load_flags = "NO_HINTING", + freetype_load_flags = "NO_HINTING", foreground_text_hsb = { hue = 1.0, saturation = 1.0, @@ -82,7 +81,7 @@ return { window_padding = { left = 0, right = 0, - top = 3, + top = 2, bottom = 0, }, audible_bell = "Disabled", From 67d4972103d97504925d4a486c6b7c5048828594 Mon Sep 17 00:00:00 2001 From: tpAtalas Date: Mon, 14 Aug 2023 20:48:01 -0500 Subject: [PATCH 3/5] feat: Update the theme for the lazygit --- lazygit/config.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lazygit/config.yml b/lazygit/config.yml index 2fbca92..22da1f7 100644 --- a/lazygit/config.yml +++ b/lazygit/config.yml @@ -17,6 +17,9 @@ gui: showIcons: true showBranchCommitHash: true theme: + activeBorderColor: + - cyan + - bold selectedLineBgColor: - "#51566F" # set to `default` to have no background color git: From 828f17e51adf7d3111d705602ce221d7836e8982 Mon Sep 17 00:00:00 2001 From: tpAtalas Date: Tue, 15 Aug 2023 08:34:27 -0500 Subject: [PATCH 4/5] feat: Update the windowWize to normal from full --- lazygit/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lazygit/config.yml b/lazygit/config.yml index 22da1f7..24b4271 100644 --- a/lazygit/config.yml +++ b/lazygit/config.yml @@ -1,7 +1,7 @@ # https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md # https://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md gui: - windowSize: "full" # one of 'normal' | 'half' | 'full' default is 'normal' + windowSize: "normal" # one of 'normal' | 'half' | 'full' default is 'normal' timeFormat: "02 Jan 06 15:04 MST" # https://pkg.go.dev/time#Time.Format branchColors: "master": "#1abc9c" From 69717bf2b1b4820ca632d6af4bcb35a0d07424a7 Mon Sep 17 00:00:00 2001 From: tpAtalas Date: Wed, 16 Aug 2023 09:36:05 -0500 Subject: [PATCH 5/5] feat: Update the submodule: nvim-config --- nvim/nvim-config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/nvim-config b/nvim/nvim-config index 2c98150..43ebd8b 160000 --- a/nvim/nvim-config +++ b/nvim/nvim-config @@ -1 +1 @@ -Subproject commit 2c981502df6c2e143871d9c677538e1805a63ed0 +Subproject commit 43ebd8bb13e93f62d7ccc753636129f1f412041e