如何使 VIM 成为一个成熟的 IDE

发布于 2024-12-02 02:21:45 字数 1433 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

So要识趣 2024-12-09 02:21:45

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

这里有各种 vim 插件的链接。探索此站点,您可以找到更多关于使用 Vim 作为 IDE 的资源和技巧。

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.

寻找我们的幸福 2024-12-09 02:21:45

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

这些视频可以教你很多关于 vim 的知识。我想看完它们后您将能够做任何您需要做的事情。

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.

梦回旧景 2024-12-09 02:21:45

发布我的回复 Unix & Linux 也在这里,因为该线程已关闭。

虽然 Vim 有很多插件,但它实际上并不是一个 IDE。不过,您可以在 Vim 中获得 IDE 的许多功能。

如前所述,您可以根据您想要的功能搜索插件来手动安装插件。如果您正在寻找已经大部分配置的东西,那么我建议使用 scrooloose 的 vimfiles 项目托管在 GitHub 上。您可以将其克隆到 ~/.vim 中:

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

您可能需要先备份当前的 ~/.vim 目录。

下载后,您可以安装子模块:

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

最后,要使用新插件,您必须通过添加 source ~/.vim/vimrc 来获取 ~/.vimrc 中的 vimrc 文件 到您的 ~/.vimrc

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文