Skip to content

Instantly share code, notes, and snippets.

@v-thomp4
Last active August 29, 2015 14:21
Show Gist options
  • Save v-thomp4/39aa8e5c14a669d4df6d to your computer and use it in GitHub Desktop.
Save v-thomp4/39aa8e5c14a669d4df6d to your computer and use it in GitHub Desktop.
Install vim ubuntu 14.04
##
## 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