Skip to content

Instantly share code, notes, and snippets.

@Polyrhythm
Created August 17, 2015 19:04
Show Gist options
  • Save Polyrhythm/558dce5b38c5d585e195 to your computer and use it in GitHub Desktop.
Save Polyrhythm/558dce5b38c5d585e195 to your computer and use it in GitHub Desktop.
unbind C-b
set -g prefix C-w
# pane switching
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# pane creation
bind c new-window -c "#{pane_current_path}"
bind | split-window -h -c "#{pane_current_path}"
bind - split-window -v -c "#{pane_current_path}"
# activity alerts
setw -g monitor-activity on
set -g visual-activity on
set -g status-fg white
set -g status-bg black
set -g status-interval 60
# set utf-8
set -g status-utf8 on
# enable vi keys
setw -g mode-keys vi
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
# 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'
set -g @tpm_plugins ' \
tmux-plugins/tpm \
tmux-plugins/tmux-resurrect \
tmux-plugins/tmux-continuum \
'
set -g @continuum-boot 'on'
set -g @continuum-boot-options 'iterm'
# 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