aboutsummaryrefslogtreecommitdiff
path: root/build/vim
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2024-01-20 12:31:58 -0500
committerMitchell Riedstra <mitch@riedstra.dev>2024-01-20 12:31:58 -0500
commite2a0cf2a79b43f9f86b74270f3d96fe300687804 (patch)
treea87edf55f81e78f4d0968d6f006562090260e068 /build/vim
parentec83443853116b07f18fbef8c6de31cf157939a0 (diff)
downloaddotfiles-e2a0cf2a79b43f9f86b74270f3d96fe300687804.tar.gz
dotfiles-e2a0cf2a79b43f9f86b74270f3d96fe300687804.tar.xz
Cleanup unused files and code.
Diffstat (limited to 'build/vim')
-rwxr-xr-xbuild/vim18
1 files changed, 0 insertions, 18 deletions
diff --git a/build/vim b/build/vim
deleted file mode 100755
index 51779e3..0000000
--- a/build/vim
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/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