Skip to content

Commit

Permalink
[tmux + zsh] fix: issue with \uE0BA glyph overlapping
Browse files Browse the repository at this point in the history
- not sure what caused this, but seems like \uE0BA needs extra space
- might have been caused by the recent fonts formula update across brew
- Homebrew/brew#17314
  • Loading branch information
saifazmi committed May 22, 2024
1 parent fb0f67d commit 80f85eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions commons/dev-environment/.config/tmux/tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
set -g default-terminal 'screen-256color'

# catppucin theme settings
set -g @catppuccin_window_left_separator '█'
set -g @catppuccin_window_left_separator ' █'
set -g @catppuccin_window_middle_separator '  █'
set -g @catppuccin_window_right_separator '█'
set -g @catppuccin_window_number_position 'right'
set -g @catppuccin_window_middle_separator ' █'

set -g @catppuccin_window_default_fill 'number'
set -g @catppuccin_window_default_text '#W'
Expand Down
2 changes: 1 addition & 1 deletion commons/dev-environment/.p10k.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
# Separator between different-color segments on the left.
typeset -g POWERLEVEL9K_LEFT_SEGMENT_SEPARATOR='\uE0BC'
# Separator between different-color segments on the right.
typeset -g POWERLEVEL9K_RIGHT_SEGMENT_SEPARATOR='\uE0BA'
typeset -g POWERLEVEL9K_RIGHT_SEGMENT_SEPARATOR='\uE0BA '
# The right end of left prompt.
typeset -g POWERLEVEL9K_LEFT_PROMPT_LAST_SEGMENT_END_SYMBOL='\uE0B4'
# The left end of right prompt.
Expand Down

0 comments on commit 80f85eb

Please sign in to comment.