diff --git a/install b/install index 10d5c10..02e680b 100755 --- a/install +++ b/install @@ -22,11 +22,20 @@ function symlink() { done } +# Remove any installed plugins in this dir. Yuck. rm -rf ./.vim/plugged backup symlink +# Append some lines to ~/.bashrc to stop the terminal +# from being frozen on Ctrl+S +cat <> ~/.bashrc +bind -r '\C-s' +stty -ixon +EOT + + # Make vim update the plugins before we ever start it vim -nN -c "PlugUpdate" -c q