tmux added
This commit is contained in:
parent
09ece8738d
commit
6ac375f9be
|
@ -0,0 +1,21 @@
|
|||
# Use Shift and arrows to switch panes
|
||||
bind -n S-Left select-pane -L
|
||||
bind -n S-Up select-pane -U
|
||||
bind -n S-Down select-pane -D
|
||||
bind -n S-Right select-pane -R
|
||||
|
||||
# Set split keys
|
||||
bind-key m split-window -v -c "#{pane_current_path}"
|
||||
bind-key l split-window -h -c "#{pane_current_path}"
|
||||
|
||||
bind-key Escape copy-mode
|
||||
bind-key p paste-buffer
|
||||
bind-key P choose-buffer
|
||||
|
||||
# Easy config reload
|
||||
bind-key r source-file ~/dot/tmuxrc \
|
||||
|
||||
set -g default-terminal "st-256color"
|
||||
set -g prefix C-Space
|
||||
bind C-Space send-prefix
|
||||
|
Loading…
Reference in New Issue