From 055641bf17491bfeb8968412cb5ab8d50f426402 Mon Sep 17 00:00:00 2001 From: don philipe Date: Thu, 10 Oct 2024 15:07:32 +0200 Subject: [PATCH] Add basic tmux config --- .tmux.conf | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .tmux.conf diff --git a/.tmux.conf b/.tmux.conf new file mode 100644 index 0000000..13d556b --- /dev/null +++ b/.tmux.conf @@ -0,0 +1,17 @@ +# List of plugins + +set -g @plugin 'tmux-plugins/tmux-resurrect' +set -g @plugin 'tmux-plugins/tmux-continuum' + +# Install plugin manager +#git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm +# Install plugin: +# 1. add to .tmux.conf +# 2. prefix+I to fetch it +# Remove plugin: +# 1. remove from .tmux.conf +# 2. prefix+alt+u to remove it +# Update plugins: +# - prefix+U +# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) +run '~/.tmux/plugins/tpm/tpm'