snips/user.tmux.conf

36 lines
897 B
Plaintext
Raw Normal View History

2019-08-17 03:11:59 +00:00
#
# TMUX Configuration file
#
# General settings {{{
set -g prefix C-a
unbind-key C-b
bind-key C-a send-prefix
set -g mouse on
bind r source-file ~/.tmux.conf
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 @plugin 'arcticicestudio/nord-tmux'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'jimeh/tmux-themepack'
set -g @themepack 'powerline/default/gray'
# }}}
# Footer {{{
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'
# }}}
# vim: foldenable foldmethod=marker