22 lines
722 B
Plaintext
22 lines
722 B
Plaintext
set-window-option -g mode-keys vi
|
|
set -g default-terminal "screen-256color"
|
|
|
|
# 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'
|
|
set -g @plugin 'tmux-plugins/tmux-battery'
|
|
|
|
# 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 status-right '#{battery_status_fg}Batt: #{battery_icon} #{battery_percentage} | %H:%M '
|
|
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
|
run -b '~/.tmux/plugins/tpm/tpm'
|
|
|