diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2019-10-15 20:56:41 -0400 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2019-10-15 20:56:41 -0400 |
| commit | eefbd029b55b2782b0d7b11b4989ce0ca9b256cd (patch) | |
| tree | 535511fd3154342117d67171e28a312bd30c7f87 /build/vim | |
| parent | 5840f413825e053b645a338d71c1916a06094335 (diff) | |
| download | dotfiles-eefbd029b55b2782b0d7b11b4989ce0ca9b256cd.tar.gz dotfiles-eefbd029b55b2782b0d7b11b4989ce0ca9b256cd.tar.xz | |
Massive organization of my dotfiles
Diffstat (limited to 'build/vim')
| -rwxr-xr-x | build/vim | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/build/vim b/build/vim new file mode 100755 index 0000000..51779e3 --- /dev/null +++ b/build/vim @@ -0,0 +1,18 @@ +#!/bin/sh +# Build vim from source code, with my usual options + +set -e +set -x + +./configure \ + --enable-multibyte \ + --with-x \ + --enable-perlinterp=yes \ + --enable-pythoninterp=yes \ + --enable-python3interp=yes \ + --enable-rubyinterp=yes \ + --with-gnome \ + --prefix=$HOME/pkg + +make -j$(nproc) +make install |
