configfiles/tmux/.tmux.conf

22 lines
663 B
Plaintext
Raw Permalink Normal View History

2015-06-08 12:53:41 +02:00
set-option -g status-bg default
set-option -g status-fg green
set-option -g status-right ""
set-option -g status-left ""
2019-10-29 16:26:08 +01:00
# set-option -g message-bg default
# set-option -g message-fg green
set-option -g message-style bg=default,fg=green
2015-08-11 11:16:19 +02:00
set-option -g status-justify centre
2015-10-31 16:28:44 +01:00
set -s escape-time 0
2015-08-11 11:16:19 +02:00
# start with window 1
set -g base-index 1
2015-10-14 16:17:06 +02:00
set -g default-terminal "screen-256color"
2015-08-11 11:16:19 +02:00
# window tabs
setw -g window-status-format " #[bg=default]#[fg=green]#W"
setw -g window-status-current-format " #[bg=default]#[fg=green]<#W>"
# use current path when opening panes
bind % split-window -h -c "#{pane_current_path}"
bind '"' split-window -v -c "#{pane_current_path}"