about summary refs log tree commit diff
path: root/usbify
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2016-08-01T19·36-0400
committerWilliam Carroll <wpcarro@gmail.com>2016-08-01T19·36-0400
commit2021514c9c6a212462b9a58e3ec6cd5b1d4cff3b (patch)
tree620241302666b267963be40aa177e8c67f36b842 /usbify
parent4e5f3f8846b400a0b9458e6aff4b862b927a657a (diff)
Updates copy in vim script
Diffstat (limited to 'usbify')
-rwxr-xr-xusbify/vim/vim_point_to_usb.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/usbify/vim/vim_point_to_usb.sh b/usbify/vim/vim_point_to_usb.sh
index db86e93a4399..00c428930a14 100755
--- a/usbify/vim/vim_point_to_usb.sh
+++ b/usbify/vim/vim_point_to_usb.sh
@@ -1,10 +1,10 @@
 #!/usr/bin/env bash
 
-# This script points the .vim directory to a USB to increase portability
-# it will toggle between modes
+# This script toggles between local vim and a version that can be stored on an 
+# external device like a USB.
 
 if [ -L "$HOME/.vim" ]; then
-  echo "Already pointing to USB. Toggling back..."
+  echo "Pointing to USB. Toggling back to local machine..."
 
   # remove the symlink and .vimrc
   rm "$HOME/.vim"
@@ -18,7 +18,7 @@ if [ -L "$HOME/.vim" ]; then
 
   echo ".vim now points to $HOME/.vim"
 else
-  echo "Not pointing to USB. Getting to work..."
+  echo "Pointing to local machine. Toggling to USB..."
 
   # rename the current .vim directory and .vimrc
   mv "$HOME/.vim" "$HOME/.vim.bak"