Guest User

Untitled

a guest
Oct 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. # get source
  2. wget ftp://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2
  3.  
  4. tar -xjvf vim-7.3.tar.bz2
  5.  
  6. # make sure using the system ruby version
  7. cd vim73
  8.  
  9. rvm use system
  10.  
  11. # compile
  12. ./configure --prefix=/usr/local \
  13. --enable-gui=no \
  14. --without-x \
  15. --disable-nls \
  16. --enable-multibyte \
  17. --with-tlib=ncurses \
  18. --enable-pythoninterp \
  19. --enable-rubyinterp \
  20. --with-ruby-command=/usr/bin/ruby \
  21. --with-features=huge
  22.  
  23. make
  24. sudo make install
Add Comment
Please, Sign In to add comment