configfiles/tmux/.tmux.conf

21 lines
591 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
# 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}"