Skip to content

Commit

Permalink
chore(merge): Compile Updates for Submodule and Settings (#115)
Browse files Browse the repository at this point in the history
## Summary:
In a series of commits, the project has been updates to submodule
configurations, window size adjustment, theme updating, and font
settings. These changes optimize user interaction and visual appearance.

## Changed:
- feat: Update the submodule: nvim-config (#114)
- feat: Update the windowWize to normal from full (#113)
- feat: Update the theme for the lazygit (#112)

## Updated:
- refactor: Minor adjustment on font setting (#111)
- refactor: Update the fonts within wezterm configs (#110)
  • Loading branch information
tpatalas authored Aug 16, 2023
2 parents 2eb4db2 + 52ce207 commit e04556f
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 9 deletions.
5 changes: 4 additions & 1 deletion lazygit/config.yml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -17,6 +17,9 @@ gui:
showIcons: true
showBranchCommitHash: true
theme:
activeBorderColor:
- cyan
- bold
selectedLineBgColor:
- "#51566F" # set to `default` to have no background color
git:
Expand Down
31 changes: 24 additions & 7 deletions wezterm/wezterm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,25 @@ 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 = "DemiBold",
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",
Expand All @@ -50,20 +66,22 @@ 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,
brightness = 1.0,
},
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,
top = 2,
bottom = 0,
},
audible_bell = "Disabled",
Expand All @@ -83,7 +101,6 @@ return {
},
window_close_confirmation = "NeverPrompt",
use_resize_increments = false,
-- dpi = 144,
-- Tab_bar
enable_tab_bar = true,
use_fancy_tab_bar = true,
Expand Down

0 comments on commit e04556f

Please sign in to comment.