including tmux config
This commit is contained in:
parent
a62377dcf9
commit
15a4ca4eb5
|
@ -0,0 +1,26 @@
|
|||
# Act like vim
|
||||
set -g mode-keys vi
|
||||
|
||||
bind-key h select-pane -L
|
||||
bind-key j select-pane -D
|
||||
bind-key k select-pane -U
|
||||
bind-key l select-pane -R
|
||||
|
||||
# List of plugins
|
||||
set -g @plugin 'tmux-plugins/tpm'
|
||||
#set -g @plugin 'tmux-plugins/tmux-sensible'
|
||||
|
||||
# Other examples:
|
||||
set -g @plugin 'christoomey/vim-tmux-navigator'
|
||||
set -g @plugin 'dracula/tmux'
|
||||
set -g @plugin 'tmux-plugins/tmux-resurrect'
|
||||
|
||||
set -g @dracula-show-powerline true
|
||||
set -g @dracula-fixed-location "Gloucester"
|
||||
set -g @dracula-plugins "weather"
|
||||
set -g @dracula-show-flags true
|
||||
set -g @dracula-show-left-icon session
|
||||
set -g status-position top
|
||||
|
||||
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
||||
run '~/.tmux/plugins/tpm/tpm'
|
Loading…
Reference in New Issue