Skip to content

Instantly share code, notes, and snippets.

@silverskyvicto
Last active February 3, 2019 08:25
Show Gist options
  • Save silverskyvicto/42c70cff4bfae798d4ed24dde755d4cd to your computer and use it in GitHub Desktop.
Save silverskyvicto/42c70cff4bfae798d4ed24dde755d4cd to your computer and use it in GitHub Desktop.
#!/bin/bash
# install tool necessary
sudo apt -y install gcc autoconf libncursesw5-dev
cd /usr/local/src
sudo git clone https://github.com/vim/vim.git
if [ $? -eq 0 ]; then
cd vim
sudo git pull
cd src
sudo make
sudo make install
cd /usr/local/src
sudo rm -rf vim
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment