summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmake10
-rw-r--r--tmux.conf10
2 files changed, 20 insertions, 0 deletions
diff --git a/make b/make
index bea5c92..0e1cfb7 100755
--- a/make
+++ b/make
@@ -35,3 +35,13 @@ rm -rf .vim/bundle
mkdir .vim/bundle
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
vim +PluginInstall +qall
+
+cd $dir
+cd mutt
+mkdir temp
+
+# Tmux
+cd
+rm -rf .tmux
+git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
+tmux source-file ~/.tmux.conf
diff --git a/tmux.conf b/tmux.conf
index c4388e6..28d13bb 100644
--- a/tmux.conf
+++ b/tmux.conf
@@ -2,3 +2,13 @@ set -g default-terminal "screen-256color"
set -g mode-mouse on
set -g mouse-resize-pane on
set -g mouse-select-pane on
+
+set -g @tpm_plugins ' \
+ tmux-plugins/tpm \
+ tmux-plugins/tmux-sensible \
+ tmux-plugins/tmux-resurrect \
+'
+
+set -g @resurrect-strategy-vim 'session'
+
+run-shell '~/.tmux/plugins/tpm/tpm'