Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mckelvin/5082071 to your computer and use it in GitHub Desktop.
Save mckelvin/5082071 to your computer and use it in GitHub Desktop.

Steps to upgrade vim in arch linux for python runtime support

Python support is needed by vim in order to run things like Conque and Slimv. Arch keeps vim slim by only providing Python support in gvim. But you may prefer vim to gvim, so here's what's needed.

More ABS info.

# Install and run abs (sync)
sudo pacman -S abs
sudo abs
# Prepare a build area
mkdir ~/abs
cd ~/abs
# Make a local copy
cp -r /var/abs/extra/vim .
cd vim
vim PKBGUID

# TODO: Change the `--disable-pythoninterp` options to `--enable-pythoninterp`

# Build the package
makepkg
# Wait for a while
# Install your new vim and runtime
sudo pacman -U vim-runtime-*.pkg.tar.xz
sudo pacman -U vim-*.pkg.tar.xz
# Check it for "+python"
vim --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment