38 lines
1.0 KiB
Plaintext
38 lines
1.0 KiB
Plaintext
set -s escape-time 0
|
|
set -g base-index 1
|
|
|
|
# List of plugins
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
set -g @plugin 'dracula/tmux'
|
|
set -g @plugin 'jabirali/tmux-tilish'
|
|
|
|
set -s default-terminal 'tmux-256color'
|
|
set-option -g default-shell /bin/zsh
|
|
set-option -g status-position top
|
|
set -g mouse on
|
|
|
|
# Dracula config
|
|
set -g @dracula-show-powerline true
|
|
set -g @dracula-show-flags true
|
|
set -g @dracula-show-left-icon window
|
|
set -g @dracula-border-contrast true
|
|
set -g @dracula-show-network false
|
|
set -g @dracula-show-battery false
|
|
set -g @dracula-show-weather false
|
|
set -g @dracula-show-location false
|
|
set -g @dracula-border-contrast true
|
|
|
|
# Start with index 1
|
|
set -g base-index 1
|
|
setw -g pane-base-index 1
|
|
|
|
# Other examples:
|
|
# set -g @plugin 'github_username/plugin_name'
|
|
# set -g @plugin 'github_username/plugin_name#branch'
|
|
# set -g @plugin 'git@github.com:user/plugin'
|
|
# set -g @plugin 'git@bitbucket.com:user/plugin'
|
|
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
|
run '~/.tmux/plugins/tpm/tpm'
|