diff options
author | Aaditya Dhruv <[email protected]> | 2023-11-27 21:15:08 -0600 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2023-11-27 21:15:08 -0600 |
commit | f03ea918e8591ba5794e5e1c4b9426138f72ab32 (patch) | |
tree | 70640d31f8f16fbc70d77a82512d2287b2ab0246 /src/config/files/shell/.tmux.conf | |
parent | 486298c62f5586dcd4904079c4633b000538c8b0 (diff) |
tmux.conf -> bindings for saving and scrolling
zsh/p10k -> new layouts and aliases
vimrc -> New plugins for tmux and tab bindings
new wallpapers
Diffstat (limited to 'src/config/files/shell/.tmux.conf')
-rw-r--r-- | src/config/files/shell/.tmux.conf | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/config/files/shell/.tmux.conf b/src/config/files/shell/.tmux.conf index e278575..2896f30 100644 --- a/src/config/files/shell/.tmux.conf +++ b/src/config/files/shell/.tmux.conf @@ -11,16 +11,16 @@ set-option -g display-panes-active-colour red set-option -g display-panes-colour blue set-option -g display-panes-time 1000 set-option -g display-time 750 -set-option -g history-limit 2000 +set-option -g history-limit 4000 set-option -g key-table root set-option -g lock-after-time 0 set-option -g lock-command "lock -np" set-option -g message-command-style bg=black,fg=yellow set-option -g message-style bg=yellow,fg=black -set-option -g mouse off +set-option -g mouse on set-option -g prefix C-a set-option -g prefix2 None -set-option -g renumber-windows off +set-option -g renumber-windows on set-option -g repeat-time 1000 set-option -g set-titles off set-option -g set-titles-string "#S:#I:#W - \"#T\" #{session_alerts}" @@ -53,3 +53,8 @@ set-option -g visual-activity off set-option -g visual-bell off set-option -g visual-silence off set-option -g word-separators "!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~" +set -g @plugin 'tmux-plugins/tmux-resurrect' +set -g @resurrect-strategy-vim 'session' +set -g @resurrect-strategy-nvim 'session' +run '~/.tmux/plugins/tpm/tpm' + |