snips/user.tmux.conf

80 lines
2.7 KiB
Plaintext

#
# TMUX Configuration file
#
# General settings {{{
# set -g default-terminal "xterm-256color"
set -g default-terminal "screen-256color"
set -g default-command "$SHELL -l"
set -g prefix C-a
unbind-key C-b
bind-key C-a send-prefix
# vi mode
set-window-option -g mode-keys vi
set -as terminal-overrides ",*:U8=a0"
# set-option -ga terminal-overrides ",screen-256color:Tc"
set -g mouse on
set -g status-position top
# set -g status-windows-justify middle
# Package management {{{
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'git@github.com/user/plugin'
# set -g @plugin 'git@bitbucket.com/user/plugin'
set -g @themepack-status-right-area-left-format "#(~/bin/tmux_status)  %H:%M"
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'jimeh/tmux-themepack'
set -g @themepack 'powerline/default/gray'
# }}}
# }}}
# Keyboard shortcuts {{{
# Reload tmux config
bind-key r source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded"
# Navigation
bind -n M-h select-pane -L
bind -n M-j select-pane -D
bind -n M-k select-pane -U
bind -n M-l select-pane -R
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind-key R source-file ~/.tmux.conf \; display-message "tmux.conf reloaded."
# # Clipboard integration
# # ctrl+c to send to clipboard
# # Selection with mouse should copy to clipboard right away, in addition to the default action.
# unbind -n -T copy-mode-vi MouseDragEnd1Pane
# bind -T copy-mode-vi MouseDragEnd1Pane send -X copy-selection-and-cancel\; run "tmux save-buffer - | xclip -i -sel clipboard > /dev/null"
# unbind -n -T copy-mode-vi 'v'
# bind -T copy-mode-vi 'v' send -X begin-selection
# unbind -n -T copy-mode-vi 'y'
# bind -T copy-mode-vi 'y' send -X copy-selection-and-cancel\; run "tmux save-buffer - | xclip -i -sel clipboard > /dev/null"
# # Middle click to paste from the clipboard
# unbind-key MouseDown2Pane
# bind-key -n MouseDown2Pane run "tmux set-buffer \"$(xclip -o -sel clipboard)\"; tmux paste-buffer"
# }}}
# Footer {{{
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
if "test ! -d ~/.tmux/plugins/tpm" \
"run 'git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm && ~/.tmux/plugins/tpm/tpm && ~/.tmux/plugins/tpm/bin/install_plugins'"
if "test -d ~/.tmux/plugins/tpm" \
"run -b '~/.tmux/plugins/tpm/tpm'"
# }}}
# vim: foldenable foldmethod=marker