tmux-tokyo-night icon indicating copy to clipboard operation
tmux-tokyo-night copied to clipboard

statusbar background is a sharp retangle

Open hxsggsz opened this issue 1 year ago • 0 comments

Hi, awesome plugin for tmux, i tried to use it but my status bar background is a little bit different, do you know what can i do to fix it?

image

this is my tmux config file

set -g @plugin 'tmux-plugins/tpm'

set -g @plugin 'tmux-plugins/tmux-pain-control'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-logging'

set -g @plugin 'fabioluciano/tmux-tokyo-night'

### Tokyo Night Theme configuration

set -g @theme_variation 'moon'
set -g @theme_left_separator '¯é©'
set -g @theme_right_separator '¯é║'

# action key
unbind C-b
set-option -g prefix C-t
set-option -g repeat-time 0
set-option -g focus-events on

#### Key bindings

set-window-option -g mode-keys vi

# Reload settings
#bind t send-key C-t
bind r source-file ~/.config/tmux/tmux.conf \; display "Reloaded!"
# Open current directory
bind o run-shell "open #{pane_current_path}"
bind -r e kill-pane -a

# vim-like pane switching
bind -r k select-pane -U 
bind -r j select-pane -D 
bind -r h select-pane -L 
bind -r l select-pane -R 

# Moving window
bind-key -n C-S-Left swap-window -t -1 \; previous-window
bind-key -n C-S-Right swap-window -t +1 \; next-window

# Resizing pane
bind -r C-k resize-pane -U 5
bind -r C-j resize-pane -D 5
bind -r C-h resize-pane -L 5
bind -r C-l resize-pane -R 5

run '~/.tmux/plugins/tpm/tpm'

obs: this is the left and right separator image

hxsggsz avatar Jan 13 '24 02:01 hxsggsz