diff options
author | Aaditya Dhruv <[email protected]> | 2025-06-12 18:30:50 +0530 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2025-06-12 18:30:50 +0530 |
commit | 8d5763dadddcc1de9d4a765e8ba8a5456e0a66e5 (patch) | |
tree | 193d3b268ab3a2baecd0365332226d7066c95f56 | |
parent | 5fcb99d7c16029ee0495a437a7bbe7b003dda023 (diff) |
Add tmux configuration
-rw-r--r-- | src/config/files/tmux/.tmux.conf | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/config/files/tmux/.tmux.conf b/src/config/files/tmux/.tmux.conf new file mode 100644 index 0000000..68304c1 --- /dev/null +++ b/src/config/files/tmux/.tmux.conf @@ -0,0 +1,10 @@ +set-option -g display-time 750 +set-option -g history-limit 50000 +set-option -g mouse on +set-option -g prefix C-a +set-option -g status-keys vi + +set -g @plugin 'tmux-plugins/tmux-resurrect' +set -g @resurrect-strategy-vim 'session' +set -g @resurrect-strategy-nvim 'session' +run '~/.tmux/plugins/tpm/tpm' |