configfiles/tmux/.tmux.conf
2015-10-31 16:28:44 +01:00

21 lines
611 B
Plaintext

set-option -g status-bg default
set-option -g status-fg green
set-option -g status-right ""
set-option -g status-left ""
set-option -g message-bg default
set-option -g message-fg green
set-option -g status-justify centre
set -s escape-time 0
# start with window 1
set -g base-index 1
set -g default-terminal "screen-256color"
# 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}"