Skip to content

Instantly share code, notes, and snippets.

@RyanParsley
Created January 22, 2016 18:59
Show Gist options
  • Select an option

  • Save RyanParsley/af2bbe8dd961999d536c to your computer and use it in GitHub Desktop.

Select an option

Save RyanParsley/af2bbe8dd961999d536c to your computer and use it in GitHub Desktop.
Tmux Config
set -s escape-time 1
set -g base-index 1
set -g pane-base-index 1
bind r source-file ~/.tmux.conf \; display "Reloaded!"
bind | split-window -h
bind - split-window -v
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind -r C-h select-window -t :-
bind -r C-l select-window -t :+
bind -r H resize-pane -L 5
bind -r J resize-pane -D 5
bind -r K resize-pane -U 5
bind -r L resize-pane -R 5
set -g mode-mouse on
set -g mouse-select-pane on
set -g mouse-resize-pane on
set -g mouse-select-window on
set -g default-terminal "screen-256color"
setw -g mode-keys vi
set-option -g default-shell /bin/zsh
unbind C-b
set -g prefix C-a
# soften status bar color from harsh green to light gray
set -g status-bg '#666666'
set -g status-fg '#aaaaaa'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment