Skip to content

Instantly share code, notes, and snippets.

@theSage21
Created July 10, 2018 08:25
Show Gist options
  • Select an option

  • Save theSage21/707a624d9d5bbdac3626fc707517b9dc to your computer and use it in GitHub Desktop.

Select an option

Save theSage21/707a624d9d5bbdac3626fc707517b9dc to your computer and use it in GitHub Desktop.
Vim + Covim + python 3
sudo apt install libncurses5-dev libgnome2-dev libgnomeui-dev \
libgtk2.0-dev libatk1.0-dev libbonoboui2-dev \
libcairo2-dev libx11-dev libxpm-dev libxt-dev python-dev \
python3-dev ruby-dev lua5.1 liblua5.1-dev libperl-dev git
sudo apt remove vim vim-runtime gvim
git clone https://github.com/vim/vim.git
cd vim/src
# NOTE THAT the python3-config dir will change as per your local system
./configure --with-features=huge --enable-multibyte --enable-python3interp=yes --enable-pythoninterp=yes --with-python3-config-dir=/usr/lib/python3.6/config-3.6m-x86_64-linux-gnu --enable-perlinterp=yes --enable-luainterp=yes --enable-gui=gtk2 --enable-cscope --prefix=/usr/local
make VIMRUNTIMEDIR=/usr/local/share/vim/vim80 -j 4
sudo apt install checkinstall
sudo checkinstall
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment