Skip to content

Instantly share code, notes, and snippets.

@calpo
Created March 2, 2012 05:29
Show Gist options
  • Save calpo/1955923 to your computer and use it in GitHub Desktop.
Save calpo/1955923 to your computer and use it in GitHub Desktop.
vim7.3ローカルインストール
#!/bin/sh
cd ~/local/src
wget http://ftp.kaist.ac.kr/vim/unix/vim-7.3.tar.bz2
bzip2 -d vim-7.3.tar.bz2
tar xvf vim-7.3.tar
rm vim-7.3.tar
cd vim73/src
mkdir ~/local/vim73
./configure --prefix=$HOME/local/vim73 --with-features=huge --enable-multibyte --enable-perlinterp --enable-pythoninterp --enable-multibyte
make
make install
cd ~/local/bin
ln -s ~/local/vim73/bin/vim vim
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment