Skip to content

Instantly share code, notes, and snippets.

@Kenta11
Last active June 6, 2020 06:29
Show Gist options
  • Save Kenta11/8b5929d41ad6e4267e7b10b9b11328b3 to your computer and use it in GitHub Desktop.
Save Kenta11/8b5929d41ad6e4267e7b10b9b11328b3 to your computer and use it in GitHub Desktop.
Vim installer for Ubuntu
#!/usr/bin/env bash
# -*- coding: utf-8 -*-
make clean; make distclean
./configure --with-features=huge \
--disable-darwin \
--disable-selinux \
--enable-fail-if-missing \
--enable-python3interp=dynamic \
--enable-cscope \
--enable-fontset \
--with-compiledby=kenta \
--enable-gui=no \
--prefix=/usr/local
make -j`nproc`
sudo checkinstall --maintainer kenta --default
echo "vim hold" | sudo dpkg --set-selections
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment