Skip to content

Instantly share code, notes, and snippets.

@sinistamunkey
Created October 14, 2016 15:56
Show Gist options
  • Save sinistamunkey/c849040a5d2fe99f1ded21fa02b90f86 to your computer and use it in GitHub Desktop.
Save sinistamunkey/c849040a5d2fe99f1ded21fa02b90f86 to your computer and use it in GitHub Desktop.
unbind C-b
set -g prefix C-a
bind a send-prefix
set -g base-index 1
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
bind -n C-M-Up resize-pane -U 15
bind -n C-M-Down resize-pane -D 15
bind -n C-M-Left resize-pane -L 25
bind -n C-M-Right resize-pane -R 25
unbind %
bind | split-window -h
bind - split-window -v
setw -g automatic-rename
setw -g monitor-activity on
set -g visual-activity on
set-window-option -g window-status-current-bg red
set -g status-bg black
set -g status-fg white
set -g status-left '#[fg=yellow]#H '
set -g status-right '#[fg=yellow]#(date +"%A %d %b %Y %H:%M")'
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'git@github.com/user/plugin'
# set -g @plugin 'git@bitbucket.com/user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment