Last active
August 29, 2015 14:21
-
-
Save v-thomp4/39aa8e5c14a669d4df6d to your computer and use it in GitHub Desktop.
Install vim ubuntu 14.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
## Setup VIM | |
## | |
sudo apt-get install -y vim-gnome ruby-dev | |
git clone --recursive https://github.com/ravishi/dotvim "$HOME/.vim" | |
cd "$HOME/.vim/bundle/command-t/ruby/command-t" | |
ruby extconf.rb && make | |
# symlink vimrc | |
ln -s "$HOME/.vim/vimrc" "$HOME/.vimrc" | |
# powerline fancy symbols | |
mkdir -p "$HOME/.fonts/" "$HOME/.config/fontconfig/conf.d/" | |
wget -P "$HOME/.fonts/" https://github.com/Lokaltog/powerline/raw/develop/font/PowerlineSymbols.otf | |
fc-cache -vf "$HOME/.fonts" | |
wget -P "$HOME/.config/fontconfig/conf.d/" https://github.com/Lokaltog/powerline/raw/develop/font/10-powerline-symbols.conf | |
# Fix | |
sudo apt-get install build-essential cmake | |
sudo apt-get install python-dev | |
cd ~/.vim/bundle/YouCompleteMe | |
./install.sh --clang-completer | |
sudo rm -r ~/.vim/bundle/vim-go | |
git clone https://github.com/fatih/vim-go.git ~/.vim/bundle/vim-go | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment