aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <msabate@suse.com>2016-04-22 20:27:33 +0200
committerMiquel Sabaté Solà <msabate@suse.com>2016-04-22 20:27:33 +0200
commit7299643a6a5e00d93bf89b8bb663af381f558412 (patch)
tree824c530e1fcc6fdcbadf42ddbdfb32260cc65c39
parent6da0278175debd86ed6b339c4b0233c2074027c4 (diff)
downloaddotfiles-7299643a6a5e00d93bf89b8bb663af381f558412.tar.gz
dotfiles-7299643a6a5e00d93bf89b8bb663af381f558412.zip
vim: I use the Vim as given by the distro
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
-rwxr-xr-xinstall-vim.sh49
1 files changed, 0 insertions, 49 deletions
diff --git a/install-vim.sh b/install-vim.sh
deleted file mode 100755
index 1396f02..0000000
--- a/install-vim.sh
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/bin/bash
-
-# Use this script to compile vim from the mercurial repo. You should only be
-# doing this if you *really* know what you're doing. You can configure the base
-# path of the vim source code with the following variable:
-BASE=/opt
-
-
-# Move to $BASE and fetch vim.
-cd $BASE
-if [ -d "vim" ]; then
- cd vim
- hg pull
- hg update
- cd ..
-else
- hg clone https://vim.googlecode.com/hg/ vim
-fi
-
-# Remove the previous config.
-cd vim
-rm -f src/auto/config.cache
-
-# I configure vim with the same options as Archlinux with the following
-# differences:
-#
-# - I don't compile support for the Perl interpreter.
-# - I enable X support (so we have clipboard support).
-#
-# This way, vim is as tiny as possible while keeping the features I need.
-./configure \
- --prefix=/usr \
- --localstatedir=/var/lib/vim \
- --with-features=huge \
- --enable-gpm \
- --enable-acl \
- --disable-gui \
- --enable-multibyte \
- --enable-cscope \
- --disable-netbeans \
- --disable-perlinterp \
- --disable-pythoninterp \
- --disable-python3interp \
- --disable-rubyinterp \
- --disable-luainterp
-
-# Make and make install.
-make && make install
-