Created
July 2, 2016 16:21
-
-
Save mcuadros/1975fa137e827b9001ad6abc65b8db43 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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