dotfiles/tmux/.tmux.conf

25 lines
763 B
Plaintext

# Pretend to be screen-256color
set-option -g default-terminal "screen-256color"
# Allow mouse input (to switch window / panes)
set -g mouse on
# Increase history size
set-option -g history-limit 10000
# Set new panes to open in current directory
bind c new-window -c "#{pane_current_path}"
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
# Tmux Plugin Manager
# Note: Clone https://github.com/tmux-plugins/tpm to ~/.tmux/plugins/tpm first
set -g @plugin 'tmux-plugins/tpm'
# Theme
set -g @plugin 'egel/tmux-gruvbox'
set -g @tmux-gruvbox 'dark'
#set -g @plugin 'jimeh/tmux-themepack'
#set -g @themepack 'powerline/double/magenta'
# Load Tmux Plugin Manager (keep this at the end)
run '~/.tmux/plugins/tpm/tpm'