nordtheme / tmux

An arctic, north-bluish clean and elegant tmux color theme.
https://www.nordtheme.com/ports/tmux
MIT License
1.06k stars 141 forks source link

ordering of nord-tmux and tmux-prefix-highlight in .tmux.conf file #71

Open stanly0726 opened 2 years ago

stanly0726 commented 2 years ago

Description

in the config file of tmux (~/.tmux.conf) if you set tmux-prefix-highlight plugin first then set nord theme plugin it'll cause prefix-highlight to malfunction

Example

good

...
set -g @plugin "arcticicestudio/nord-tmux"
set -g @plugin 'tmux-plugins/tmux-prefix-highlight'
...

bad

...
set -g @plugin 'tmux-plugins/tmux-prefix-highlight'
set -g @plugin "arcticicestudio/nord-tmux"
...

Environment and Versions

nord-tmux 0.3.0 tmux 3.0a tmux-prefix-highlight latest tpm latest

Potential Solution

mention the order matters in documentation also mention this in the installation guide at best

paulmiddelkoop commented 1 year ago

I have the same problem.