Created
December 7, 2012 10:32
-
-
Save schaary/4232383 to your computer and use it in GitHub Desktop.
Installation vim
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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