-
Hello, My .tmux.conf
# Use vi key bindings in copy mode
set-option -wg mode-keys vi
set-option -g default-shell /bin/zsh
# first window will have the index 1 instead of 0
set-option -g base-index 1
set-option -g history-limit 10000
# Disable the mouse
set-option -g mouse off
# Reload config and tell it
bind-key r source-file ~/.tmux.conf \; display "Yay reloaded tmux config"
# Pick a window easily with alt-<number>
bind-key -n M-0 select-window -t 0
bind-key -n M-1 select-window -t 1
bind-key -n M-2 select-window -t 2
bind-key -n M-3 select-window -t 3
bind-key -n M-4 select-window -t 4
bind-key -n M-5 select-window -t 5
bind-key -n M-6 select-window -t 6
bind-key -n M-7 select-window -t 7
bind-key -n M-8 select-window -t 8
bind-key -n M-9 select-window -t 9
set-option -g display-time 2000
# Plugins
#########
# {{{{{{{{{{{{{{{{{{{{{{{{{{{{{
set -g @plugin 'tmux-plugins/tpm'
# }}}}}}}}}}}}}}}}}}}}}}}}}}}}}
# {{{{{{{{{{{{{{{{{{{{{{{{{{{{{
set -g @plugin 'tmux-plugins/tmux-sensible'
# }}}}}}}}}}}}}}}}}}}}}}}}}}}}}
# {{{{{{{{{{{{{{{{{{{{{{{{{{{{{
# set -g @plugin 'dracula/tmux'
# ----
set -g @plugin 'arcticicestudio/nord-tmux'
# }}}}}}}}}}}}}}}}}}}}}}}}}}}}}
# {{{{{{{{{{{{{{{{{{{{{{{{{{{{{
set -g @plugin 'tmux-plugins/tmux-resurrect'
# }}}}}}}}}}}}}}}}}}}}}}}}}}}}}
# {{{{{{{{{{{{{{{{{{{{{{{{{{{{{
set -g @plugin 'sainnhe/tmux-fzf'
# }}}}}}}}}}}}}}}}}}}}}}}}}}}}}
# {{{{{{{{{{{{{{{{{{{{{{{{{{{{{
set -g @plugin 'olimorris/tmux-pomodoro-plus'
set-option -ag status-left "#[fg=$color_gray]#{pomodoro_status}"
set-option -g @pomodoro_start 'T'
set-option -g @pomodoro_cancel 'T'
set-option -g @pomodoro_granularity 'on'
set-option -g @pomodoro_on " 🍅"
set-option -g @pomodoro_complete "#[fg=green]🍅 "
set-option -g @pomodoro_notifications 'on'
set-option -g @pomodoro_sound 'on'
# }}}}}}}}}}}}}}}}}}}}}}}}}}}}}
run '~/.tmux/plugins/tpm/tpm' When I start pomodoro, the status bar of tmux does not change However, when I remove my theme 'arcticicestudio/nord-tmux' (I also tried dracula/tmux and the result is the same) and I run pomodoro, the apple is shown up I'm new to tmux too, so I do not know whether I'm missing something somewhere. Any ideas? Environment: ❯ tmux -V
tmux 3.2a
❯ kitty --version # I've even tried alacritty and ubuntu default terminal and the result is no different
kitty 0.21.2 created by Kovid Goyal |
Beta Was this translation helpful? Give feedback.
Answered by
olimorris
Jul 3, 2023
Replies: 1 comment 8 replies
-
Where is |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
So Nord Theme requires plugins to integrate with it? Is there a guide for that?
I'd be open to a PR but unlikely to add this myself.