OS:Windows
Vim安裝完成以後,目錄以下
- vim73:vim運行時所需的文件,對應目錄爲$VIMRUNTIME變量
- vimfiles:第三方的文件,對應目錄爲$VIM/vimfiles
- _vimrc:vim全局配置信息
配置Github
在Github上建立名爲DxhVim的repository。
在本機使用Git Bash輸入如下命令:
cd
~
mkdir .dxhvim
git init
git add .
git commit
- m
"init"
git remote add origin https
:
//github.com/dxh/DxhVim.git
git push
- u origin master
配置Vundle
在本機使用Git Bash輸入如下命令:
cd
~
/.dxhvim
git submodule add https
:
//github.com/gmarik/vundle.git bunlde/vundle
在.dxhvim目錄下建立.vimrc文件,並輸入以下內容:
""
""
""
""
""
""
""
""
""
"Configuration of Vundle"
""
""
""
""
""
""
""
""
""
filetype off
set rtp
+=
~
/.dxhvim
/bundle
/vundle
/
call vundle#rc(
'$HOME/.dxhvim/bundle/')
Bundle
'gmarik/vundle'
filetype on
安裝卸載插件
若是想安裝插件,首先在~/.dxhvim/.vimrc中添加相應插件的Bundle,通常爲Bundle ’username/pluginname'的形式,如Bundle 'gmarik/vundle'
而後打開Vim,輸入一下命令,並等待Done便可,若是安裝過程當中出錯,能夠輸入小寫字母"l"查看日誌:
若是想卸載插件,只需在~/.dxhvim/.vimrc中刪除(或註釋)相應的Bundle,而後打開Vim,輸入:
使用DxhVim配置
首先,在本機Git Bash中輸入如下命令:
cd
~
git clone https
:
//github.com/dxh/DxhVim.git .dxhvim
而後,在VIM安裝目錄下的VIM全局配置文件_vimrc中source個人.vimrc,即添加下面一行內容:
source
~
/.dxhvim
/.vimrc