19 lines
541 B
Bash
19 lines
541 B
Bash
# IMPORTANT: To apply plugins, while on tmux press: <prefix>, I
|
|
|
|
# List of plugins
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
|
|
# Solarized theme
|
|
set -g @plugin 'seebi/tmux-colors-solarized'
|
|
set -g @colors-solarized 'light'
|
|
|
|
# Terminal type configuration
|
|
set -g default-terminal "screen-256color"
|
|
set -ga terminal-overrides ",xterm-256color:Tc"
|
|
|
|
# Bindings
|
|
bind M-c a -c "%{pane_current_path}"
|
|
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
|
run '~/.tmux/plugins/tpm/tpm'
|