aboutsummaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorMitch Riedstra <mitch@riedstra.us>2019-10-15 20:56:41 -0400
committerMitch Riedstra <mitch@riedstra.us>2019-10-15 20:56:41 -0400
commiteefbd029b55b2782b0d7b11b4989ce0ca9b256cd (patch)
tree535511fd3154342117d67171e28a312bd30c7f87 /build
parent5840f413825e053b645a338d71c1916a06094335 (diff)
downloaddotfiles-eefbd029b55b2782b0d7b11b4989ce0ca9b256cd.tar.gz
dotfiles-eefbd029b55b2782b0d7b11b4989ce0ca9b256cd.tar.xz
Massive organization of my dotfiles
Diffstat (limited to 'build')
-rwxr-xr-xbuild/vim18
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