How can I make VIM a full fledged IDE

与世无争的帅哥 提交于 2019-12-07 11:03:30

问题


How could I make VIM a full fledged IDE by using different supported plugins for YUI, JQuery and git integration etc.


回答1:


http://vim.wikia.com/wiki/Use_Vim_like_an_IDE

This has links for various plugins for vim. Explore on this site and you can find a few more resources and tips for using Vim as your IDE.




回答2:


http://www.derekwyatt.org/vim/vim-tutorial-videos/

Thoses videos can teach you a lot about vim. I guess you'll be able to do whatever you need to after looking at them.




回答3:


Posting my response from Unix & Linux here as well since that thread was closed.

While there are many plugins for Vim, it really isn't an IDE. However, you can get many of the features of IDEs in Vim.

As has been mentioned, you can install plugins manually by searching for them based on features you'd like. If you are looking for something that is already mostly configured, then I'd suggest using scrooloose's vimfiles project hosted on GitHub. You can clone it into your ~/.vim:

git clone https://github.com/scrooloose/vimfiles.git ~/.vim

You may want to backup your current ~/.vim directory first.

Once it is downloaded you can install the submodules:

cd ~/.vim
git submodule init && git submodule update

Finally to use the new plugins you'll have to source the vimrc file in your ~/.vimrc by adding source ~/.vim/vimrc to your ~/.vimrc.



来源:https://stackoverflow.com/questions/7206469/how-can-i-make-vim-a-full-fledged-ide

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!