Skip to content

Instantly share code, notes, and snippets.

@mjoey
Last active March 12, 2023 16:40
Show Gist options
  • Select an option

  • Save mjoey/5344b89a82b325c1d1fa to your computer and use it in GitHub Desktop.

Select an option

Save mjoey/5344b89a82b325c1d1fa to your computer and use it in GitHub Desktop.
[michael-joseph.me] Vim Compilation in 4 steps
#VIM COMPILATION
cd vim/src
#LIB Installation
sudo apt install xorg-dev
#1 CLEAN CONTENT FOLDER
make distclean
#2 CONFIGURATION
#To see different possible configurations
./configure --help
#Configuration command
./configure --with-features=huge --enable-python3interp=yes --enable-sniff --enable-rubyinterp=yes --enable-luainterp=yes --enable-perlinterp=yes --with-x
#3 COMPILATION
make
#4 INSTALLATION
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment