@@ -31,19 +31,32 @@ tmux:
31
31
# of Git status elements. See the STYLES section of tmux man page.
32
32
# https://man7.org/linux/man-pages/man1/tmux.1.html#STYLES.
33
33
styles:
34
- clear: '#[fg=#{@thm_fg}]'
35
- state: '#[fg=#{@thm_red},bold]'
36
- branch: '#[fg=#{@thm_fg},bold]'
37
- remote: '#[fg=#{@thm_teal}]'
38
- divergence: '#[fg=#{@thm_fg}]'
39
- staged: '#[fg=#{@thm_green},bold]'
40
- conflict: '#[fg=#{@thm_red},bold]'
41
- modified: '#[fg=#{@thm_yellow},bold]'
42
- untracked: '#[fg=#{@thm_mauve},bold]'
43
- stashed: '#[fg=#{@thm_blue},bold]'
44
- clean: '#[fg=#{@thm_rosewater},bold]'
45
- insertions: '#[fg=#{@thm_green}]'
46
- deletions: '#[fg=#{@thm_red}]'
34
+ # Clear previous style.
35
+ clear: "#[none]"
36
+ # Special tree state strings such as [rebase], [merge], etc.
37
+ state: "#[fg=#ff3399,bold]"
38
+ # Local branch name
39
+ branch: "#[fg=#ffffff,bold]"
40
+ # Remote branch name
41
+ remote: "#[fg=#00e6e6]"
42
+ # 'divergence' counts
43
+ divergence: "#[fg=#08bdba]"
44
+ # 'staged' count
45
+ staged: "#[fg=#46c880,bold]"
46
+ # 'conflicts' count
47
+ conflict: "#[fg=#ff3399,bold]"
48
+ # 'modified' count
49
+ modified: "#[fg=#ff3399,bold]"
50
+ # 'untracked' count
51
+ untracked: "#[fg=#be95ff,bold]"
52
+ # 'stash' count
53
+ stashed: "#[fg=#00e6e6,bold]"
54
+ # 'insertions' count
55
+ insertions: "#[fg=#46c880]"
56
+ # 'deletions' count
57
+ deletions: "#[fg=#ff3399]"
58
+ # 'clean' symbol
59
+ clean: "#[fg=#46c880,bold]"
47
60
48
61
# The layout section defines what components gitmux shows and the order in
49
62
# which they appear on tmux status bar.
0 commit comments