Browse Source

Update ubuntu-vim.sh

Donald Duvall 2 years ago
parent
commit
9b662fe765
1 changed files with 6 additions and 4 deletions
  1. 6 4
      ubuntu-vim.sh

+ 6 - 4
ubuntu-vim.sh

@@ -11,8 +11,11 @@ sudo apt update && sudo apt install -y git vim curl
 
 # We need to obtain and run the dein install
 #curl https://raw.githubusercontent.com/Shougo/dein.vim/master/bin/installer.sh > installer.sh  # OLD Install from main (Main has new install procedure)
-curl https://raw.githubusercontent.com/Shougo/dein.vim/release/bin/installer.sh > installer.sh
-sh ./installer.sh ~/.cache/dein
+#curl https://raw.githubusercontent.com/Shougo/dein.vim/release/bin/installer.sh > installer.sh
+curl https://raw.githubusercontent.com/Shougo/dein-installer.vim/main/installer.sh > installer.sh
+
+# Run installer and clean installer file
+sh ./installer.sh ~/.cache/dein; rm ./installer.sh
 
 
 # Put this into our vimrc file
@@ -93,5 +96,4 @@ set listchars+=tab:>-,space:.
 
 EOF
 
-# Cleanup dein installer tmp file
-rm ./installer.sh
+