Skip to content

Instantly share code, notes, and snippets.

@hoadinhmai
Last active April 30, 2019 19:54
Show Gist options
  • Save hoadinhmai/0675ec1dcea49bb407c5d141829461b1 to your computer and use it in GitHub Desktop.
Save hoadinhmai/0675ec1dcea49bb407c5d141829461b1 to your computer and use it in GitHub Desktop.
# remap prefix to Control + a
set -g prefix C-a
unbind C-b
bind C-a send-prefix
# force a reload of the config file
unbind r
bind r source-file ~/.tmux.conf
# quick pane cycling
unbind ^A
bind ^A select-pane -t :.+
# vertical split window
unbind ^V
bind ^V split-window -h
# horizontal split window
unbind ^H
bind ^H split-window
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
# Other examples:
#set -g @plugin 'seebi/tmux-colors-solarized'
#set -g @colors-solarized '256'
set -g @plugin 'jimeh/tmux-themepack'
set -g @themepack 'powerline/block/blue'
# set -g @plugin '[email protected]/user/plugin'
# set -g @plugin '[email protected]/user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run -b '~/.tmux/plugins/tpm/tpm'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment