2018-04-15 17:01:21 +00:00
|
|
|
set-window-option -g mode-keys vi
|
2018-05-08 18:53:42 +00:00
|
|
|
set -g default-terminal "screen-256color"
|
2018-04-15 17:01:21 +00:00
|
|
|
|
2018-11-16 22:28:07 +00:00
|
|
|
# List of plugins
|
|
|
|
# Install TPM with
|
|
|
|
# git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
|
|
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
|
|
set -g @plugin 'seebi/tmux-colors-solarized'
|
2018-11-20 06:44:22 +00:00
|
|
|
set -g @plugin 'tmux-plugins/tmux-battery'
|
2018-11-16 22:28:07 +00:00
|
|
|
|
|
|
|
# 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'
|
|
|
|
|
2018-11-20 07:04:08 +00:00
|
|
|
set -g status-right '#{battery_status_fg}Batt: #{battery_icon} #{battery_percentage} | %H:%M '
|
2018-11-20 06:44:22 +00:00
|
|
|
|
2018-11-16 22:28:07 +00:00
|
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
|
|
|
run -b '~/.tmux/plugins/tpm/tpm'
|
|
|
|
|