-
Notifications
You must be signed in to change notification settings - Fork 0
/
tmux-gitbar.conf
28 lines (24 loc) · 916 Bytes
/
tmux-gitbar.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# tmux-gitbar: Git in tmux status bar
#
# Created by Aurélien Rainone
# github.com/aurelien-rainone/tmux-gitbar
#
# This is the tmux-gitbar configuration file
#
# Location of the status on tmux bar: left or right
# readonly TMGB_STATUS_LOCATION='right'
readonly TMGB_STATUS_LOCATION='left'
# Style for tmux-gitbar
# readonly TMGB_STYLE='bg=black,fg=white,bright'
readonly TMGB_STYLE='bg=black,bright,fg=cyan,bright'
# Status line format string definition.
# It controls what tmux-gitbar will show in the status line. It accepts
# any keyword or variable Tmux originally accepts, plus these ones:
#
# - #{git_branch} : local branch name
# - #{git_remote} : remote tracking branch
# - #{git_upstream} : upstream branch info
# - #{git_flags} : working tree status flags
#
# See README.md for additional information
readonly TMGB_STATUS_STRING=" #{git_branch} - #{git_upstream} - #{git_remote} #{git_flags}"