Skip to content

Commit

Permalink
Check for tmuxline.vim in bootstrap.zsh.
Browse files Browse the repository at this point in the history
  • Loading branch information
razor-x committed Jun 11, 2015
1 parent 835070f commit 414be85
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bootstrap.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,10 @@ if [[ -e $HOME/.promptline.zsh ]]; then
fi

if ! [[ -e $HOME/.tmuxline.conf ]] then
puts 'Note' 'To install tmuxline, while in a tmux session open vim and run:'
echo ":TmuxlineSnapshot ~/.tmuxline.conf"
if [[ -d $HOME/.vim/plugged/tmuxline.vim ]]; then
puts 'Note' 'To install tmuxline, while in a tmux session open vim and run:'
echo ":TmuxlineSnapshot ~/.tmuxline.conf"
fi
fi

if [[ -e $HOME/.tmuxline.conf ]]; then
Expand Down

0 comments on commit 414be85

Please sign in to comment.