Skip to content

Instantly share code, notes, and snippets.

@beyonddream
Last active June 6, 2019 06:12
Show Gist options
  • Save beyonddream/59d8942e89d8b18a6d6d472ab223b5ad to your computer and use it in GitHub Desktop.
Save beyonddream/59d8942e89d8b18a6d6d472ab223b5ad to your computer and use it in GitHub Desktop.
custom vim installation (Ubuntu 16)
# needed below dependencies to be installed (cmake, libcurses)
sudo apt-get install cmake libncurses5-dev libncursesw5-dev
# from https://github.com/Valloric/YouCompleteMe/wiki/Building-Vim-from-source
# make
git clone https://github.com/vim/vim.git
cd vim
./configure --with-features=huge \
--enable-multibyte \
--enable-rubyinterp \
--enable-pythoninterp \
--with-python-config-dir=/usr/lib/python2.7/config \
--enable-perlinterp \
--enable-luainterp \
--enable-gui=gtk2 \
--enable-cscope \
--prefix=/usr/local
make VIMRUNTIMEDIR=/usr/local/share/vim/vim81
# install
cd src/
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment