50 lines
1.5 KiB
Text
50 lines
1.5 KiB
Text
|
|
set -g status-position top
|
||
|
|
set -g renumber-windows on
|
||
|
|
set -g set-clipboard on
|
||
|
|
|
||
|
|
## Bindings:
|
||
|
|
bind -N "Split Horizontally" s split-window -v
|
||
|
|
bind -N "Split Vertically" v split-window -h
|
||
|
|
bind -N "Reload Source File" R source-file ~/.config/tmux/tmux.conf
|
||
|
|
bind -N "Change Session Root Dir" E attach-session -c "#{pane_current_path}"
|
||
|
|
|
||
|
|
## COLORSCHEME: gruvbox dark (medium)
|
||
|
|
set-option -g status "on"
|
||
|
|
|
||
|
|
# default statusbar color
|
||
|
|
set-option -g status-style bg="#282828",fg="#928374" # bg=bg1, fg=fg1
|
||
|
|
|
||
|
|
# default window title colors
|
||
|
|
set-window-option -g window-status-style bg="#282828",fg="#EBDBB2" # bg=yellow, fg=bg1
|
||
|
|
|
||
|
|
# default window with an activity alert
|
||
|
|
set-window-option -g window-status-activity-style bg="#282828",fg="#CC241D" # bg=bg1, fg=fg3
|
||
|
|
|
||
|
|
# active window title colors
|
||
|
|
set-window-option -g window-status-current-style bg="#EBDBB2",fg="#282828" # fg=bg1
|
||
|
|
|
||
|
|
# pane border
|
||
|
|
set-option -g pane-active-border-style fg="#928374" #fg2
|
||
|
|
set-option -g pane-border-style fg="#928374" #bg1
|
||
|
|
|
||
|
|
# message infos
|
||
|
|
set-option -g message-style bg="#282828",fg="#FABD2F" # bg=bg2, fg=fg1
|
||
|
|
|
||
|
|
# writing commands inactive
|
||
|
|
set-option -g message-command-style bg="#282828",fg="#D3869B" # bg=fg3, fg=bg1
|
||
|
|
|
||
|
|
# pane number display
|
||
|
|
set-option -g display-panes-active-colour colour250 #fg2
|
||
|
|
set-option -g display-panes-colour colour237 #bg1
|
||
|
|
|
||
|
|
# clock
|
||
|
|
set-window-option -g clock-mode-colour colour109 #blue
|
||
|
|
|
||
|
|
# bell
|
||
|
|
set-window-option -g window-status-bell-style bg=colour167,fg=colour235 # bg=red, fg=bg
|
||
|
|
|
||
|
|
|
||
|
|
set-option -sg escape-time 0
|
||
|
|
|
||
|
|
set-option -a terminal-features 'xterm-256-color:RGB'
|