Skip to content

Instantly share code, notes, and snippets.

@archie9211
Last active June 7, 2019 14:15
Show Gist options
  • Save archie9211/9e85f21abd7cefb0c8f9f6dd4c854d17 to your computer and use it in GitHub Desktop.
Save archie9211/9e85f21abd7cefb0c8f9f6dd4c854d17 to your computer and use it in GitHub Desktop.
mycolab_init.sh
sudo apt update
# sudo apt upgrade
sudo apt install git vim curl
sudo apt install zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
mkdir /root/.vim
curl -o "/root/.vim/vimrc" "https://raw.githubusercontent.com/archie9211/scripts/8fcfba08135823635112748dee14bb262214768b/vimrc"
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
mv /root/.zshrc /root/.zshrc.bak
curl -o /root/.zshrc "https://raw.githubusercontent.com/archie9211/scripts/master/.zshrc"
curl -fLo /root/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
vim +'PlugInstall --sync' +qa
cd /root/.vim/plugged/YouCompleteMe && python3 install.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment