Skip to content

Instantly share code, notes, and snippets.

@schaary
Created December 7, 2012 10:32
Show Gist options
  • Save schaary/4232383 to your computer and use it in GitHub Desktop.
Save schaary/4232383 to your computer and use it in GitHub Desktop.
Installation vim
# durch die Basisinstallation ist bereits das Verzeichnis .vim und die
# Konfigurationsdatei .vimrc vorhanden
# Vollstaendig Ruby mit rbenv installieren
# Vim installieren
mkdir ~/download
cd ~/download
curl -O ftp://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2
tar xjf vim-7.3.tar.bz2
cd vim73
./configure --enable-rubyinterp
make
make test
sudo make install
cd /usr/local/bin
sudo ln -s vim vi
# Installation des command-t plugins
git clone [email protected]:wincent/Command-T.git ~/.vim/bundle/command-t
cd ~/.vim/bundle/command-t/ruby/command-t
ruby extconf.rb
make
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment