Vim install: Difference between revisions

From wikinotes
No edit summary
No edit summary
 
Line 1: Line 1:
= Binary Install =
<blockquote>
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
pacman -S vim                # arch
pacman -S vim                # arch
Line 5: Line 7:
choco install -y vim        # windows
choco install -y vim        # windows
</syntaxhighlight>
</syntaxhighlight>
</blockquote><!-- Binary Install -->
= Compilation =
<blockquote>
Compiling vim should take less than 5min.
<syntaxhighlight lang="bash">
./configure \
  --with-features=huge \
  --enable-pythoninterp \
  --enable-python3interp \
  --prefix=/usr
make
sudo make install
</syntaxhighlight>
</blockquote><!-- Compilation -->
= Windows Portable Binary Install =
<blockquote>
If you're working in a strict environment that does not permit software installers,<br>
you can simply copy a vim install from somewhere else.
</blockquote><!-- Portable Binary Install -->

Latest revision as of 18:40, 17 July 2021

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.