Skip to content

Instantly share code, notes, and snippets.

@leothelocust
Created November 5, 2015 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leothelocust/8a3a0d342e45db6292fa to your computer and use it in GitHub Desktop.
Save leothelocust/8a3a0d342e45db6292fa to your computer and use it in GitHub Desktop.
# List of plugins
# Supports `github_username/repo` or full git repo URLs
set -g @tpm_plugins ' \
tmux-plugins/tpm \
tmux-plugins/tmux-sensible \
tmux-plugins/tmux-resurrect \
tmux-plugins/tmux-continuum \
tmux-plugins/tmux-battery \
tmux-plugins/tmux-copycat \
tmux-plugins/tmux-yank \
tmux-plugins/tmux-open \
tmux-plugins/tmux-pain-control \
'
# Custom Settings
unbind-key C-b
set-option -g prefix F10
bind F10 last-window
bind | split-window -h
bind - split-window -v
bind b previous-window
set-option -g renumber-windows on
set -g base-index 1
set -ga terminal-overrides ',xterm*:smcup@:rmcup@'
set -g mode-mouse on
# TMUX-CONTINUUM
set -g @continuum-restore 'on'
set -g @continuum-boot-options 'iterm'
set -g @continuum-save-interval '1'
# TMUX-RESURRECT
set -g @resurrect-processes 'centerIM'
run-shell "powerline-daemon -q"
source "/Library/Python/2.7/site-packages/powerline/bindings/tmux/powerline.conf"
unbind C-a
bind-key -n C-a send-prefix
# Initializes TMUX plugin manager.
# Keep this line at the very bottom of tmux.conf.
run-shell '~/.tmux/plugins/tpm/tpm'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment