This commit is contained in:
madmaurice 2015-10-08 10:18:01 +02:00
parent 3bb78ce556
commit d4ffef45e9
32 changed files with 0 additions and 0 deletions

18
tmux/.tmux.conf Normal file
View file

@ -0,0 +1,18 @@
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
# 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}"