Vim install

From wikinotes

Binary Install

pacman -S vim                # arch
pkg install vim              # freebsd
sudo apt install -y vim-nox  # ubuntu
choco install -y vim         # windows

Compilation

Compiling vim should take less than 5min.

./configure \
   --with-features=huge \
   --enable-pythoninterp \
   --enable-python3interp \
   --prefix=/usr
make
sudo make install

Windows Portable Binary Install

If you're working in a strict environment that does not permit software installers,
you can simply copy a vim install from somewhere else.