readd missing tmux config options
This commit is contained in:
parent
db46908176
commit
ee29a7cdb0
1 changed files with 23 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
|
||||
set-option -g status-position top
|
||||
set -goq @powerline-color-main-1 "#61AFEF"
|
||||
set -goq @powerline-color-grey-1 "#1d2026"
|
||||
# Split panes with \ and -
|
||||
bind \\ split-window -h -c "#{pane_current_path}"
|
||||
bind - split-window -v -c "#{pane_current_path}"
|
||||
|
@ -9,3 +13,22 @@ bind j select-pane -D
|
|||
bind k select-pane -U
|
||||
bind l select-pane -R
|
||||
|
||||
bind-key -r C-Up resize-pane -U 5
|
||||
bind-key -r C-Down resize-pane -D 5
|
||||
bind-key -r C-Left resize-pane -L 5
|
||||
bind-key -r C-Right resize-pane -R 5
|
||||
|
||||
# remove delay for exiting insert mode with ESC in Neovim
|
||||
set -sg escape-time 10
|
||||
|
||||
# tpm plugin
|
||||
set -g @plugin 'tmux-plugins/tpm'
|
||||
|
||||
# list of tmux plugins
|
||||
set -g @plugin 'christoomey/vim-tmux-navigator'
|
||||
set -g @plugin 'jimeh/tmux-themepack'
|
||||
|
||||
set -g @themepack 'powerline/block/blue'
|
||||
|
||||
|
||||
run '~/.config/tmux/plugins/tpm/tpm'
|
||||
|
|
Loading…
Add table
Reference in a new issue