当前位置:首页 > linux教程 > 列表

linux下vim安装vundle并安装emmet

发布:smiling 来源: PHP粉丝网  添加日期:2015-05-06 15:57:31 浏览: 评论:0 

下面来给各位介绍linux下vim安装vundle并安装emmet,如果你对于这两个组件不理解可以和小编一起来看看此教程,首先在Windows上安装git,自行搞掂,谢谢.

设置 curl命令工具,Curl已经在安装git时就带上了,接下来需要的是稍稍配置下使得它能在命令提示符中使用,找到git的安装目录,然后进入cmd目录,新建一个名为curl.cmd的文件,内容如下:

  1. @rem Do not use "echo off" to not affect any child calls. 
  2. @setlocal 
  3.  
  4. @rem Get the abolute path to the parent directory, which is assumed to be the 
  5. @rem Git installation root. 
  6. @for /F "delims=" %%I in ("%~dp0..") do @set git_install_root=%%~fI 
  7. @set PATH=%git_install_root%\bin;%git_install_root%\mingw\bin;%PATH% 
  8.  
  9. @if not exist "%HOME%" @set HOME=%HOMEDRIVE%%HOMEPATH% 
  10. @if not exist "%HOME%" @set HOME=%USERPROFILE% 
  11.  
  12. @curl.exe %* 

在命令提示符中输入 curl –version来验证下curl是否可用了.

切换到用户主目录,运行:

git clone https://github.com/gmarik/vundle.git .vim/bundle/vundle

然后在用户主目录下新建一个名为 .vimrc的文件,我的文件内容如下:

  1. set nu 
  2. set fileencoding=utf-8 
  3. set fileencodings=utf-8,gb18030,gb2312,gbk,big5 
  4. set ts=4 
  5. set expandtab 
  6. set autoindent 
  7. set nocompatible 
  8. set syntax=on 
  9.  
  10.  
  11. filetype off                  " required! 
  12.  
  13. set rtp+=~/.vim/bundle/vundle/ 
  14. call vundle#rc() 
  15. //phpfensi.com 
  16. " let Vundle manage Vundle 
  17. " required!  
  18. Bundle 'gmarik/vundle' 
  19. Bundle 'mattn/emmet-vim' 
  20. Bundle 'Auto-Pairs' 
  21. Bundle 'php-doc' 
  22. Bundle 'PHPDoc-Script-PDocS' 
  23. let g:user_emmet_expandabbr_key = '<Tab>' 
  24. let g:user_emmet_settings = {'indentation''    '
  25. filetype plugin indent on     " required! 

这样Vundle的安装就完毕了,要使用Vundle,可以在上面创建的 _vimrc中添加 Bundle ‘bundle_name’,然后打开vim,运行Vundle相关的命令来执行.

安装插件::BundleInstall

更新插件::BundleInstall!

卸载插件::BundleClean

至于有什么样的插件可以添加,可以到vim-scripts.org查找,除此之外,还可以添加git管理的repo,包括GitHub上的,不在GitHub上的,以及本地repo.

Tags: vim安装 vundle安装 emmet

分享到: