dotfiles/.tmux.conf

45 lines
920 B
Plaintext
Raw Normal View History

2015-12-02 13:58:40 +00:00
# vim: set tw=0 nolbr fo-=t
bind-key C-space set -g status
bind C-p previous-window
bind | split-window -h -c '#{pane_current_path}'
bind - split-window -v -c '#{pane_current_path}'
unbind '"'
unbind %
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
2019-01-19 21:36:53 +00:00
set -g assume-paste-time 0
2015-12-02 13:58:40 +00:00
set -g base-index 1
set -g set-titles on
set -g escape-time 0
set -g default-shell "/bin/zsh"
set -g default-terminal "screen-256color"
set -g renumber-windows on
set -g bell-action any
bind r source-file ~/.tmux.conf
set -g set-titles-string "#T"
2017-07-16 21:51:02 +00:00
set -g status-bg colour24
2015-12-02 13:58:40 +00:00
set -g status-fg default
2017-08-24 23:28:54 +00:00
set -g status-interval 5
2015-12-02 13:58:40 +00:00
set-window-option -g window-status-bell-style fg=colour235,bg=colour160
2017-07-16 21:51:02 +00:00
set -g status-left '#H '
2015-12-02 13:58:40 +00:00
set -g status-left-length 20
set -g status-right '[#S]'
set-window-option -g window-status-current-format "#I:#W#F"
set-window-option -g window-status-format "#I:#W#F"