tmux updates

This commit is contained in:
Pratik
2020-05-17 02:38:02 +05:30
parent fda9039644
commit fa24912173
6 changed files with 31 additions and 16 deletions

View File

@@ -3,21 +3,21 @@
set-option -g prefix C-a
unbind-key C-a
bind-key C-a send-prefix
# Use Alt-arrow keys to switch panes
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
# Shift arrow to switch windows
bind -n S-Left previous-window
bind -n S-Right next-window
# Set easier window split keys
bind-key v split-window -h
bind-key h split-window -v
# Easy config reload
bind-key r source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded."
######################## Key Bindings ########################
@@ -52,4 +52,8 @@ set -g history-limit 10000
# Mouse mode
setw -g mouse on
# Restore tmux-sessions -> https://github.com/tmux-plugins/tmux-resurrect
run-shell ~/downloads/softwares/tmux-resurrect/resurrect.tmux
######################## Other Features ########################