Skip to content

Instantly share code, notes, and snippets.

@mcuadros
Created July 2, 2016 16:21
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 mcuadros/1975fa137e827b9001ad6abc65b8db43 to your computer and use it in GitHub Desktop.
Save mcuadros/1975fa137e827b9001ad6abc65b8db43 to your computer and use it in GitHub Desktop.
# Default shell
set-option -g default-shell /usr/local/bin/fish
# Automatically set window title
#setw -g automatic-rename
# reload config file (change file location to your the tmux.conf you want to use)
bind r source-file ~/.tmux.conf
# split panel
bind h split-window -h
bind v split-window -v
unbind '"'
unbind %
# mouse
set-option -g mouse on
# Plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-open'
set -g @plugin 'tmux-plugins/tmux-yank'
#set -g @plugin 'seebi/tmux-colors-solarized'
#set -g @colors-solarized 'dark'
# Powerline status bar
source "/usr/share/tmux/powerline.conf"
set-option -g status-position top
# 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