diff options
-rwxr-xr-x | make | 10 | ||||
-rw-r--r-- | tmux.conf | 10 |
2 files changed, 20 insertions, 0 deletions
@@ -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 @@ -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' |