From f46f2c707091580ca486ef44c3b4e4d0a40e04f9 Mon Sep 17 00:00:00 2001 From: Melon Bread Date: Thu, 22 Jul 2021 00:00:04 -0400 Subject: [PATCH] Add tmux config --- .tmux.conf | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .tmux.conf diff --git a/.tmux.conf b/.tmux.conf new file mode 100644 index 0000000..9df03db --- /dev/null +++ b/.tmux.conf @@ -0,0 +1,21 @@ +set-option -g status on +set-option -g status-interval 2 +set-option -g status-justify "centre" +set-option -g status-left-length 60 +set-option -g status-right-length 90 + + +# List of plugins +set -g @plugin 'tmux-plugins/tpm' +set -g @plugin 'tmux-plugins/tmux-sensible' +set -g @plugin 'tmux-plugins/tmux-resurrect' +set -g @plugin 'tmux-plugins/tmux-yank' +#set -g @plugin 'tmux-plugins/tmux-urlview' +set -g @plugin 'tmux-plugins/tmux-sidebar' +set -g @plugin 'tmux-plugins/tmux-prefix-highlight' +set -g @plugin 'egel/tmux-gruvbox' + +set -g status-right '#{prefix_highlight} | %a %Y-%m-%d %H:%M' + +# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) +run -b '~/.tmux/plugins/tpm/tpm'