Skip to content

Instantly share code, notes, and snippets.

@tprado
Created February 2, 2017 16:20
Show Gist options
  • Save tprado/ba6307806d1a03b03cce7e2858639ccf to your computer and use it in GitHub Desktop.
Save tprado/ba6307806d1a03b03cce7e2858639ccf to your computer and use it in GitHub Desktop.
set-option -g default-command $SHELL
set-option -g status-fg white
set-option -g status-bg default
set-option -g status-interval 5
set-option -g message-fg white
set-option -g message-bg default
set-option -g message-attr bright
set-option -g pane-border-fg black
set-option -g pane-border-bg default
set-option -g pane-active-border-fg black
set-option -g pane-active-border-bg default
set-option -g status-right-length 200
set-option -g status-right '#(tmux-status)'
set-option -g mouse on
set-option -g prefix C-Space
set-window-option -g base-index 1
set-window-option -g mode-key vi
set-window-option -g renumber-windows on
set-window-option -g window-status-fg brightblack
set-window-option -g window-status-bg default
set-window-option -g window-status-attr dim
set-window-option -g window-status-current-fg white
set-window-option -g window-status-current-bg default
set-window-option -g window-status-current-attr dim
bind-key C-q kill-window
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R
bind-key c new-window -c '#{pane_current_path}'
bind-key '"' split-window -c '#{pane_current_path}'
bind-key % split-window -h -c '#{pane_current_path}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment