cygwin下如何安装vim插件?

发布于 2024-10-07 09:00:05 字数 133 浏览 3 评论 0原文

我在我的 Windows 机器上安装了 cygwin。我的 cygwin 主目录中没有 .vim 目录。这种情况下如何安装vim插件呢?

顺便问一下,HTML/CSS/JavaScript 开发建议使用哪些插件?

谢谢!

I installed a cygwin on my windows machine. There isn't a .vim directory in my cygwin home directory. How to install vim plugin in this case?

By the way, what plugins are suggested for HTML/CSS/JavaScript development?

Thanks!

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

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

发布评论

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

评论(3

昵称有卵用 2024-10-14 09:00:05

我在 WinXP 上安装了 Cygwin:我只需创建一个 .vim 树目录即可使其工作。

基本上,在 ~/ 中创建一个 .vim 目录,并按照 khachik 的建议解压其中的插件。如果您的插件正确打包,它应该创建适当的子目录,例如 autoload、doc 等。

如果您想配置安装,您还必须在 ~/ 中创建一个 .vimrc。

要使用 HTML,我建议使用 Tim 的 surround 插件教皇。快速添加/删除标签非常棒。

有一个 cygwin/vim 相关问题可以解答您的一些疑虑:How do I use my .vimrc file in Cygwin?

I have Cygwin installed on WinXP : I only had to create a .vim tree directory to make it work.

Basically, create a .vim directory in your ~/ and untar you plugins in there as recommended by khachik. It should create the appropriate subdirectories like autoload, doc, etc if your plugins are correctly packaged.

You'll also have to create a .vimrc in your ~/ if you want to configure your installation.

To work with HTML, I recommend to use the surround plugin by Tim Pope. It is great to add/remove tags quickly.

There is a cygwin/vim related question which can answer some of your concerns here : How do I use my .vimrc file in Cygwin?

2024-10-14 09:00:05

您可以使用 cygwin 中的插件管理器 Vundle。

在此处获取它。

要安装它,只需将其克隆到您的主目录中即可。但由于 git 和 cygwin 将以不同的方式解释路径,因此您必须这样做:

$ git clone https://github.com/VundleVim/Vundle.vim.git /cygwin64/home/USERNAME/.vim/bundle/Vundle.vim

只需按照说明进行操作即可。最后你必须像 Windows 安装一样修改 vimrc,但在这种情况下你只需要修改

set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

set rtp+=c:/cygwin64/home/USERNAME/.vim/bundle/Vundle.vim/
call vundle#begin('c:/cygwin64/home/USERNAME/.vim/bundle/')

之后你就可以在 vim 中获得所有 vundle 的舒适度。

You can use the plugin manager Vundle in cygwin.

Get it here.

To install it you just clone it into your home diectory. But since git and cygwin will interpret the path differently you have to do:

$ git clone https://github.com/VundleVim/Vundle.vim.git /cygwin64/home/USERNAME/.vim/bundle/Vundle.vim

Just follow the instructions. At the end you have to modify the vimrc similar to a windows install but in this case you only have to modify

set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

to

set rtp+=c:/cygwin64/home/USERNAME/.vim/bundle/Vundle.vim/
call vundle#begin('c:/cygwin64/home/USERNAME/.vim/bundle/')

after that you will have all the vundle comfort in vim.

苯莒 2024-10-14 09:00:05

对于 HTML,我建议使用非官方的 Zencoding 插件。

For HTML, I suggest an unofficial Zencoding plugin.

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