"=========================================================================
" DesCRiption: 适合自己使用的vimrc文件,for Linux/Windows, GUI/Consolehttp://www.oschina.net/code/snippet_103341_10313
001 |
" ----------------- Author: Ruchee |
002 |
" ----------------- Email: [email protected] |
003 |
" ----------------- WebSite: http://www.ruchee.com |
004 |
" ----------------- Date: 2012-05-01 |
005 |
|
006 |
|
007 |
" Ctrl + H --光标移当前行行首 |
008 |
" Ctrl + J --光标移下一行行首 |
009 |
" Ctrl + K --光标移上一行行尾 |
010 |
" Ctrl + L --光标移当前行行尾 |
011 |
" Ctrl + C --编译 [支持C/C++、Java、Haskll] |
012 |
" Ctrl + R --运行 [支持C/C++、Java、Haskell、Lua、Perl、Python、Ruby] |
013 |
" Ctrl + ] --转到函数定义 |
014 |
" Ctrl + T --返回调用函数 |
015 |
" Ctrl + E --一步加载语法模板和作者、时间信息 |
016 |
|
017 |
" <C-P> --单词补全 |
018 |
" <C-X><C-L> --整行补全 |
019 |
" Tab键 --插入模式下的全功能语法结构补全 [snipMate插件] |
020 |
" Shift + Insert --向Vim中粘贴从别处复制的内容 |
021 |
|
022 |
" u [小写] --单步复原 [非插入模式] |
023 |
" U [大写] --整行复原 [非插入模式] |
024 |
|
025 |
" jj --保存文件并留在插入模式 [插入模式] |
026 |
" kk --返回Normal模式 [插入模式] |
027 |
" nt --打开NERDTree [非插入模式] |
028 |
" tl --打开TagList [非插入模式] |
029 |
|
030 |
" za --打开或关闭当前折叠 |
031 |
" zM --关闭所有折叠 |
032 |
" zR --打开所有折叠 |
033 |
|
034 |
" :set syntax=cpp --手动选择语法高亮 [或 :set filetype=cpp] |
035 |
|
036 |
" :%!xxd --转储二进制文件,以十六进制形式显示 |
037 |
" :%!xxd -r --还原二进制文件 |
038 |
|
039 |
|
040 |
" ---------- 主要插件详细用法说明 --------------------- |
041 |
|
042 |
" :Tlist --呼出变量和函数列表 [TagList插件] |
043 |
" :LoadTemplate --呼出语法模板 [Load_Template插件] |
044 |
" :AuthorInfoDetect --添加作者、时间等信息 [NERD_commenter && authorinfo插件] |
045 |
|
046 |
" ---------- a.vim [自动切换C/C++同名头文件] ---------- |
047 |
" |
048 |
" :A --切换同名头文件并独占整个屏幕 |
049 |
" :AS --切换同名头文件并垂直分屏,头文件在上 |
050 |
" :AV --切换同名头文件并水平分割,头文件在左 |
051 |
|
052 |
" ---------- mark.vim [追踪高亮指定关键字] ------------ |
053 |
" |
054 |
" \m --normal模式下,在想要高亮的单词上面敲击\m即可高亮或取消高亮该单词 |
055 |
" :Mark --取消所有高亮 |
056 |
" :Mark abc --指定高亮单词 abc 或取消高亮 abc |
057 |
|
058 |
" ---------- NERDTree [智能文件浏览器] ---------------- |
059 |
" |
060 |
" :NERDTree --启动NERDTree插件 |
061 |
" o [小写] --切换当前文件或目录的打开、关闭状态 |
062 |
" u --打开上层目录 |
063 |
" p [小写] --返回上层目录 |
064 |
" P [大写] --返回根目录 |
065 |
" K --转到当前目录第一个节点 |
066 |
" J --转到当前目录最后的节点 |
067 |
" m --显示文件系统菜单 [增、删、移] |
068 |
" ? --弹出帮助菜单 |
069 |
" q --退出该插件 |
070 |
|
071 |
|
072 |
" 将所有以.html结尾的文档以Django Template语法进行渲染 |
073 |
" 本配置语句必须放在所有配置的最前面 |
074 |
au BufNewFile,BufRead *.html setf htmldjango |
075 |
|
076 |
colorscheme blackboard " 着色模式:蓝色背景 |
077 |
set guifont=Monaco:h10 " 字体 && 字号 |
078 |
set tabstop=4 " 设置tab键的宽度 |
079 |
set shiftwidth=4 " 换行时行间交错使用4个空格 |
080 |
set autoindent " 自动对齐 |
081 |
set backspace=2 " 设置退格键可用 |
082 |
set cindent shiftwidth=4 " 自动缩进4空格 |
083 |
set smartindent " 智能自动缩进 |
084 |
set ai! " 设置自动缩进 |
085 |
set nu! " 显示行号 |
086 |
"set showmatch " 显示括号配对情况 |
087 |
set mouse=a " 启用鼠标 |
088 |
set ruler " 右下角显示光标位置的状态行 |
089 |
set incsearch " 查找book时,当输入/b时会自动找到 |
090 |
set hlsearch " 开启高亮显示结果 |
091 |
set incsearch " 开启实时搜索功能 |
092 |
set nowrapscan " 搜索到文件两端时不重新搜索 |
093 |
set nocompatible " 关闭兼容模式 |
094 |
set vb t_vb= " 关闭提示音 |
095 |
"set cursorline " 突出显示当前行 |
096 |
set hidden " 允许在有未保存的修改时切换缓冲区 |
097 |
set list " 显示Tab符,使用一高亮竖线代替 |
098 |
set listchars=tab:\|\ , |
099 |
|
100 |
syntax enable " 打开语法高亮 |
101 |
syntax on " 开启文件类型侦测 |
102 |
filetype indent on " 针对不同的文件类型采用不同的缩进格式 |
103 |
filetype plugin on " 针对不同的文件类型加载对应的插件 |
104 |
filetype plugin indent on " 启用自动补全 |
105 |
|
106 |
|
107 |
if has("gui_running") |
108 |
au GUIEnter * simalt ~x " 窗口启动时自动最大化 |
109 |
"winpos 20 20 " 指定窗口出现的位置,坐标原点在屏幕左上角 |
110 |
"set lines=20 columns=90 " 指定窗口大小,lines为高度,columns为宽度 |
111 |
"set guioptions-=m " 隐藏菜单栏 |
112 |
"set guioptions-=T " 隐藏工具栏 |
113 |
"set guioptions-=L " 隐藏左侧滚动条 |
114 |
"set guioptions-=r " 隐藏右侧滚动条 |
115 |
"set guioptions-=b " 隐藏底部滚动条 |
116 |
"set showtabline=0 " 隐藏Tab栏 |
117 |
endif |
118 |
|
119 |
set writebackup " 设置无备份文件 |
120 |
set nobackup |
121 |
set autochdir " 设定文件浏览器目录为当前目录 |
122 |
"set nowrap " 设置不自动换行 |
123 |
set foldmethod=syntax " 选择代码折叠类型 |
124 |
set foldlevel=100 " 禁止自动折叠 |
125 |
|
126 |
set laststatus=2 " 开启状态栏信息 |
127 |
set cmdheight=2 " 命令行的高度,默认为1,这里设为2 |
128 |
|
129 |
" 每行超过80个的字符用下划线标示 |
130 |
au BufRead,BufNewFile *.s,*.asm,*.h,*.c,*.cpp,*.cc,*.java,*.cs,*.erl,*.hs,*.sh,*.lua,*.pl,*.pm,*.php,*.py,*.rb,*.erb,*.vim,*.js,*.css,*.xml,*.html,*.xhtml 2match Underlined /.\%81v/ |
131 |
|
132 |
|
133 |
" 设置编码 |
134 |
set fenc=utf-8 |
135 |
set encoding=utf-8 |
136 |
set fileencodings=utf-8,gbk,cp936,latin-1 |
137 |
" 解决菜单乱码 |
138 |
source $VIMRUNTIME/delmenu.vim |
139 |
source $VIMRUNTIME/menu.vim |
140 |
" 解决consle输出乱码 |
141 |
language messages zh_CN.utf-8 |
142 |
|
143 |
|
144 |
" For Haskell |
145 |
:let hs_highlight_delimiters=1 " 高亮定界符 |
146 |
:let hs_highlight_boolean=1 " 把True和False识别为关键字 |
147 |
:let hs_highlight_types=1 " 把基本类型的名字识别为关键字 |
148 |
:let hs_highlight_more_types=1 " 把更多常用类型识别为关键字 |
149 |
:let hs_highlight_debug=1 " 高亮调试函数的名字 |
150 |
:let hs_allow_hash_operator=1 " 阻止把#高亮为错误 |
151 |
|
152 |
|
153 |
" ======= 引号 && 括号自动匹配 ======= " |
154 |
|
155 |
:inoremap ( ()<ESC>i |
156 |
|
157 |
:inoremap ) <c-r>=ClosePair(')')<CR> |
158 |
|
159 |
:inoremap { {}<ESC>i |
160 |
|
161 |
:inoremap } <c-r>=ClosePair('}')<CR> |
162 |
|
163 |
:inoremap [ []<ESC>i |
164 |
|
165 |
:inoremap ] <c-r>=ClosePair(']')<CR> |
166 |
|
167 |
":inoremap < <><ESC>i |
168 |
|
169 |
":inoremap > <c-r>=ClosePair('>')<CR> |
170 |
|
171 |
:inoremap " ""<ESC>i |
172 |
|
173 |
:inoremap ' ''<ESC>i |
174 |
|
175 |
:inoremap ` ``<ESC>i |
176 |
|
177 |
function ClosePair(char) |
178 |
if getline('.')[col('.') - 1] == a:char |
179 |
return "\<Right>" |
180 |
else |
181 |
return a:char |
182 |
endif |
183 |
endf |
184 |
|
185 |
|
186 |
" MiniBufExplorer 多个文件切换 可使用鼠标双击相应文件名进行切换 |
187 |
let g:miniBufExplMapWindowNavVim=1 |
188 |
let g:miniBufExplMapWindowNavArrows=1 |
189 |
let g:miniBufExplMapCTabSwitchBufs=1 |
190 |
let g:miniBufExplModSelTarget=1 |
191 |
|
192 |
" :Tlist 调用TagList |
193 |
let Tlist_Show_One_File=1 " 只显示当前文件的tags |
194 |
let Tlist_Exit_OnlyWindow=1 " 如果Taglist窗口是最后一个窗口则退出Vim |
195 |
let Tlist_Use_Right_Window=1 " 在右侧窗口中显示 |
196 |
let Tlist_File_Fold_Auto_Close=1 " 自动折叠 |
197 |
|
198 |
" TxtBrowser 高亮TXT文本文件 |
199 |
au BufRead,BufNewFile *.txt setlocal ft=txt |
200 |
|
201 |
" :LoadTemplate 根据文件后缀自动加载模板 |
202 |
let g:template_path='D:/Apps/Gvim/vimfiles/template/' |
203 |
|
204 |
" :AuthorInfoDetect 自动添加作者、时间等信息,本质是NERD_commenter && authorinfo的结合 |
205 |
let g:vimrc_author='Ruchee' |
206 |
let g:vimrc_email='[email protected]' |
207 |
let g:vimrc_homepage='http://www.ruchee.com' |
208 |
|
209 |
" Ctrl + H 将光标移到当前行的行首 |
210 |
imap <c-h> <ESC>I |
211 |
|
212 |
" Ctrl + J 将光标移到下一行的行首 |
213 |
imap <c-j> <ESC>jI |
214 |
|
215 |
" Ctrl + K 将光标移到上一行的末尾 |
216 |
imap <c-k> <ESC>kA |
217 |
|
218 |
" Ctrl + L 将光标移到当前行的行尾 |
219 |
imap <c-l> <ESC>A |
220 |
|
221 |
" Ctrl + E 一步加载语法模板和作者、时间信息 |
222 |
map <c-e> <ESC>:LoadTemplate<CR><ESC>:AuthorInfoDetect<CR><ESC>Gi |
223 |
imap <c-e> <ESC>:LoadTemplate<CR><ESC>:AuthorInfoDetect<CR><ESC>Gi |
224 |
vmap <c-e> <ESC>:LoadTemplate<CR><ESC>:AuthorInfoDetect<CR><ESC>Gi |
225 |
|
226 |
" jj 保存文件并留在插入模式 [插入模式] |
227 |
imap jj <ESC>:w<CR>li |
228 |
|
229 |
" kk 返回Normal模式 [插入模式] |
230 |
imap kk <ESC>l |
231 |
|
232 |
" nt 打开NERDTree [非插入模式] |
233 |
map nt :NERDTree<CR> |
234 |
|
235 |
" tl 打开Taglist [非插入模式] |
236 |
map tl :Tlist<CR><c-l> |
237 |
|
238 |
|
239 |
" ======= 编译 && 运行 ======= " |
240 |
|
241 |
" 编译源文件 |
242 |
func! CompileCode() |
243 |
exec "w" |
244 |
if &filetype == "c" |
245 |
exec "!gcc -Wall -std=c99 %<.c -o %<" |
246 |
elseif &filetype == "cpp" |
247 |
exec "!g++ -Wall -std=c++98 %<.cpp -o %<" |
248 |
elseif &filetype == "java" |
249 |
exec "!javac %<.java" |
250 |
elseif &filetype == "haskell" |
251 |
exec "!ghc --make %<.hs -o %<" |
252 |
elseif &filetype == "lua" |
253 |
exec "!lua %<.lua" |
254 |
elseif &filetype == "perl" |
255 |
exec "!perl %<.pl" |
256 |
elseif &filetype == "python" |
257 |
exec "!python %<.py" |
258 |
elseif &filetype == "ruby" |
259 |
exec "!ruby %<.rb" |
260 |
endif |
261 |
endfunc |
262 |
|
263 |
" 运行可执行文件 |
264 |
func! RunCode() |
265 |
exec "w" |
266 |
if &filetype == "c" || &filetype == "cpp" || &filetype == "haskell" |
267 |
exec "! %<.exe" |
268 |
elseif &filetype == "java" |
269 |
exec "!java %<" |
270 |
elseif &filetype == "lua" |
271 |
exec "!lua %<.lua" |
272 |
elseif &filetype == "perl" |
273 |
exec "!perl %<.pl" |
274 |
elseif &filetype == "python" |
275 |
exec "!python %<.py" |
276 |
elseif &filetype == "ruby" |
277 |
exec "!ruby %<.rb" |
278 |
endif |
279 |
endfunc |
280 |
|
281 |
" Ctrl + C 一键保存、编译 |
282 |
map <c-c> :call CompileCode()<CR> |
283 |
imap <c-c> <ESC>:call CompileCode()<CR> |
284 |
vmap <c-c> <ESC>:call CompileCode()<CR> |
285 |
|
286 |
" Ctrl + R 一键保存、运行 |
287 |
map <c-r> :call RunCode()<CR> |
288 |
imap <c-r> <ESC>:call RunCode()<CR> |
289 |
vmap <c-r> <ESC>:call RunCode()<CR> |