From ba349ba7f5f97226e94a48b46864b0afa0be0efe Mon Sep 17 00:00:00 2001 From: Keanu Date: Sun, 15 Aug 2021 13:13:25 +0200 Subject: [PATCH] [tmux] Add basic tmux config. --- tmux/tmux.conf | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tmux/tmux.conf diff --git a/tmux/tmux.conf b/tmux/tmux.conf new file mode 100644 index 0000000..0bf4532 --- /dev/null +++ b/tmux/tmux.conf @@ -0,0 +1,22 @@ +set -g default-terminal 'screen-256color' +set -g mouse on + +run 'if [ -d "~/.tmux/plguins/tpm" ]; then : ; else git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm; fi' + + set -g @tpm_plugins ' \ + tmux-plugins/tpm \ + tmux-plugins/tmux-sensible \ + tmux-plugins/tmux-resurrect \ + tmux-plugins/tmux-continuum \ + tmux-plugins/tmux-pain-control \ + egel/tmux-gruvbox \ + ' + +set -g @tmux-gruvbox 'dark' + +set -g @resurrect-strategy-nvim 'session' +set -g @resurrect-capture-pane-contents 'on' + +set -g @continuum-restore 'on' + +run '~/.tmux/plugins/tpm/tpm'