diff options
author | garhve <git@garhve.com> | 2024-09-16 11:47:28 +0800 |
---|---|---|
committer | garhve <git@garhve.com> | 2024-09-16 11:47:28 +0800 |
commit | bcfda983efdd527f75de54c35f5366f23e774233 (patch) | |
tree | 13df9f98cd06f78dbfa666b0e0e834346c76c247 /.config/tmux/tmux.conf |
initialize
Diffstat (limited to '.config/tmux/tmux.conf')
-rw-r--r-- | .config/tmux/tmux.conf | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf new file mode 100644 index 0000000..c9204ce --- /dev/null +++ b/.config/tmux/tmux.conf @@ -0,0 +1,21 @@ +set -g default-terminal "tmux-256color" +set -g history-limit 10000 + +# Change to ctrl^A +unbind C-b +set -g prefix C-a +bind C-a send-prefix +# Reload shortcut +bind r source-file ~/.config/tmux/tmux.conf + +# List of plugins +set -g @plugin 'tmux-plugins/tpm' +set -g @plugin 'tmux-plugins/tmux-sensible' +set -g @plugin 'arcticicestudio/nord-tmux' + +set -g @plugin 'tmux-plugins/tmux-resurrect' +set -g @plugin 'tmux-plugins/tmux-continuum' +set -g @continuum-restore 'on' + +# Initialize TMUX plugin manager (Keep this line at the very bottom of tmux.conf) +run '~/.local/share/tmux/plugins/tpm/tpm' |