Gvim/Vim 配置好了常用插件(Windows 与 Linux 通用)

在网上找了个很好的Gvim
转载地址 : http://www.oschina.net/code/snippet_574132_13357

--------------------------------------<< 使 用 说 明 >>-------------------------------------- 
此为 Windows Gvim7.4 绿色版,其中的插件与配置文件在 Linux 下同样适用(我是在 
Ubuntu 下测试的)。对于Windows 用户,直接将下载到的文件解压,并将程序主目录加入 
系统变量即可(也就是将 vim74 目录加入 Path 系统变量);当然,如果不加入系统变量也 
可以使用,但 Ctags 与 Cscope 的相关功能就不能使用了,同时窗口的透明与置顶功能也不 
能使用,因为我将这些功能相关的非 vim 插件放在了 vim74 目录里(我是用 win7 64 位与 
32 位测试的,没有问题)。设置好后就启动 vim74 目录里的 gvim.exe 文件就行了(当然 
也可以给它创建个桌面快捷方式)。而对于 Linux 用户,先确保安装了完整的 vim (如果 
是 Ubuntu 就直接安装软件中心的 vim 即可),并安装好 Ctags 与 Cscope ,不然可能出 
现 vim 加载错误提示;这些完成后,直接将解压到的文件中的 vimfiles 目录与 _vimrc 文 
件重命名为 .vim 目录与 .vimrc 文件,并将其复制到 ~/ 目录即可(也就是 Linux 系统的 
用户主目录),我是用 Ubuntu 测试的没有问题。 

具体配置与快捷键请看配置文件(vimrc 文件),Gvim(Vim)自有的快捷键请看其帮助, 
或在网上看一些常用快捷键,本包中也已带有“常用快捷键导图”。 

下载地址: http://pan.baidu.com/s/1pJDEYqn
标签: GVim  Vim

代码片段(3)

1. [代码][其他]代码     

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
" =============================================================================
"        << 判断操作系统是 Windows 还是 Linux 和判断是终端还是 Gvim >>
" =============================================================================
 
" -----------------------------------------------------------------------------
"  < 判断操作系统是否是 Windows 还是 Linux >
" -----------------------------------------------------------------------------
let g:iswindows = 0
let g:islinux = 0
if (has( "win32" ) || has( "win64" ) || has( "win95" ) || has( "win16" ))
     let g:iswindows = 1
else
     let g:islinux = 1
endif
 
" -----------------------------------------------------------------------------
"  < 判断是终端还是 Gvim >
" -----------------------------------------------------------------------------
if has( "gui_running" )
     let g:isGUI = 1
else
     let g:isGUI = 0
endif
 
 
" =============================================================================
"                          << 以下为软件默认配置 >>
" =============================================================================
 
" -----------------------------------------------------------------------------
"  < Windows Gvim 默认配置> 做了一点修改
" -----------------------------------------------------------------------------
if (g:iswindows && g:isGUI)
     source $VIMRUNTIME /vimrc_example .vim
     source $VIMRUNTIME /mswin .vim
     behave mswin
     set diffexpr=MyDiff()
 
     function MyDiff()
         let opt = '-a --binary '
         if &diffopt =~ 'icase' | let opt = opt . '-i ' | endif
         if &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endif
         let arg1 = v :fname_in
         if arg1 =~ ' ' | let arg1 = '"' . arg1 . '"' | endif
         let arg2 = v :fname_new
         if arg2 =~ ' ' | let arg2 = '"' . arg2 . '"' | endif
         let arg3 = v :fname_out
         if arg3 =~ ' ' | let arg3 = '"' . arg3 . '"' | endif
         let eq = ''
         if $VIMRUNTIME =~ ' '
             if &sh =~ '\
                 let cmd = '""' . $VIMRUNTIME . '\diff"'
                 let eq = '"'
             else
                 let cmd = substitute($VIMRUNTIME, ' ' , '" ' , '' ) . '\diff"'
             endif
         else
             let cmd = $VIMRUNTIME . '\diff'
         endif
         silent execute '!' . cmd . ' ' . opt . arg1 . ' ' . arg2 . ' > ' . arg3 . eq
     endfunction
endif
 
" -----------------------------------------------------------------------------
"  < Linux Gvim /Vim 默认配置> 做了一点修改
" -----------------------------------------------------------------------------
if g:islinux
     set hlsearch        "高亮搜索
     set incsearch       "在输入要搜索的文字时,实时匹配
 
     " Uncomment the following to have Vim jump to the last position when
     " reopening a file
     if has( "autocmd" )
         au BufReadPost * if line( "'\"" ) > 1 && line( "'\"" ) <= line( "$" ) | exe "normal! g'\"" | endif
     endif
 
     if g:isGUI
         " Source a global configuration file if available
         if filereadable( "/etc/vim/gvimrc.local" )
             source /etc/vim/gvimrc . local
         endif
     else
         " This line should not be removed as it ensures that various options are
         " properly set to work with the Vim-related packages available in Debian.
         runtime! debian.vim
 
         " Vim5 and later versions support syntax highlighting. Uncommenting the next
         " line enables syntax highlighting by default.
         if has( "syntax" )
             syntax on
         endif
 
         set mouse=a                    " 在任何模式下启用鼠标
         set t_Co=256                   " 在终端启用256色
         set backspace=2                " 设置退格键可用
 
         " Source a global configuration file if available
         if filereadable( "/etc/vim/vimrc.local" )
             source /etc/vim/vimrc . local
         endif
     endif
endif
 
 
" =============================================================================
"                          << 以下为用户自定义配置 >>
" =============================================================================
 
" -----------------------------------------------------------------------------
"  < Vundle 插件管理工具配置 >
" -----------------------------------------------------------------------------
" 用于更方便的管理vim插件,具体用法参考 :h vundle 帮助
" 安装方法为在终端输入如下命令
" git clone https: //github .com /gmarik/vundle .git ~/.vim /bundle/vundle
" 如果想在 windows 安装就必需先安装 " git for window",可查阅网上资料
 
set nocompatible                                      "禁用 Vi 兼容模式
filetype off                                          "禁用文件类型侦测
 
if g:islinux
     set rtp+=~/.vim /bundle/vundle/
     call vundle #rc()
else
     set rtp+=$VIM /vimfiles/bundle/vundle/
     call vundle #rc('$VIM/vimfiles/bundle/')
endif
 
" 使用Vundle来管理Vundle,这个必须要有。
Bundle 'gmarik/vundle'
 
" 以下为要安装或更新的插件,不同仓库都有(具体书写规范请参考帮助)
Bundle 'a.vim'
Bundle 'Align'
Bundle 'jiangmiao/auto-pairs'
Bundle 'bufexplorer.zip'
Bundle 'ccvext.vim'
Bundle 'cSyntaxAfter'
Bundle 'Yggdroot/indentLine'
" Bundle 'javacomplete'
" Bundle 'vim-javacompleteex'               " 更好的 Java 补全插件
Bundle 'Mark--Karkat'
" Bundle 'fholgado/minibufexpl.vim'         " 好像与 Vundle 插件有一些冲突
Bundle 'Shougo/neocomplcache.vim'
Bundle 'scrooloose/nerdcommenter'
Bundle 'scrooloose/nerdtree'
Bundle 'OmniCppComplete'
Bundle 'Lokaltog/vim-powerline'
Bundle 'repeat.vim'
Bundle 'msanders/snipmate.vim'
Bundle 'wesleyche/SrcExpl'
" Bundle 'ervandew/supertab'                " 有时与 snipmate 插件冲突
Bundle 'std_c.zip'
Bundle 'tpope/vim-surround'
Bundle 'scrooloose/syntastic'
Bundle 'majutsushi/tagbar'
Bundle 'taglist.vim'
Bundle 'TxtBrowser'
Bundle 'ZoomWin'
 
" -----------------------------------------------------------------------------
"  < 编码配置 >
" -----------------------------------------------------------------------------
" 注:使用utf-8格式后,软件与程序源码、文件路径不能有中文,否则报错
set encoding=utf-8                                    "设置gvim内部编码
set fileencoding=utf-8                                "设置当前文件编码
set fileencodings=ucs-bom,utf-8,gbk,cp936,latin-1     "设置支持打开的文件的编码
 
" 文件格式,默认 ffs=dos,unix
set fileformat=unix                                   "设置新文件的格式
set fileformats=unix,dos,mac                          "给出文件的格式类型
 
if (g:iswindows && g:isGUI)
     "解决菜单乱码
     source $VIMRUNTIME /delmenu .vim
     source $VIMRUNTIME /menu .vim
 
     "解决consle输出乱码
     language messages zh_CN.utf-8
endif
 
" -----------------------------------------------------------------------------
"  < 编写文件时的配置 >
" -----------------------------------------------------------------------------
filetype on                                           "启用文件类型侦测
filetype plugin on                                    "针对不同的文件类型加载对应的插件
filetype plugin indent on                             "启用缩进
set smartindent                                       "启用智能对齐方式
set expandtab                                         "将Tab键转换为空格
set tabstop=4                                         "设置Tab键的宽度
set shiftwidth=4                                      "换行时自动缩进4个空格
set smarttab                                          "指定按一次backspace就删除shiftwidth宽度的空格
set foldenable                                        "启用折叠
set foldmethod=indent                                 "indent 折叠方式
" set foldmethod=marker                                " marker 折叠方式
 
" 用空格键来开关折叠
nnoremap @=((foldclosed(line( '.' )) < 0) ? 'zc' : 'zo' )
 
" 当文件在外部被修改,自动更新该文件
set autoread
 
" 常规模式下输入 cS 清除行尾空格
nmap cS :%s/\s\+$ //g :noh
 
" 常规模式下输入 cM 清除行尾 ^M 符号
nmap cM :%s/\r$ //g :noh
 
set ignorecase                                        "搜索模式里忽略大小写
set smartcase                                         "如果搜索模式包含大写字符,不使用 'ignorecase' 选项,只有在输入搜索模式并且打开 'ignorecase' 选项时才会使用
" set noincsearch                                       " 在输入要搜索的文字时,取消实时匹配
 
" Ctrl + K 插入模式下光标向上移动
imap
 
" Ctrl + J 插入模式下光标向下移动
imap
 
" Ctrl + H 插入模式下光标向左移动
imap
 
" Ctrl + L 插入模式下光标向右移动
imap
 
" 启用每行超过80列的字符提示(字体变蓝并加下划线),不启用就注释掉
au BufWinEnter * let w:m2=matchadd( 'Underlined' , '\%>' . 80 . 'v.\+' , -1)
 
" -----------------------------------------------------------------------------
"  < 界面配置 >
" -----------------------------------------------------------------------------
set number                                            "显示行号
set laststatus=2                                      "启用状态栏信息
set cmdheight=2                                       "设置命令行的高度为2,默认为1
set cursorline                                        "突出显示当前行
" set guifont=YaHei_Consolas_Hybrid:h10                 " 设置字体:字号(字体名称空格用下划线代替)
set nowrap                                            "设置不自动换行
set shortmess=atI                                     "去掉欢迎界面
 
" 设置 gVim 窗口初始位置及大小
if g:isGUI
     " au GUIEnter * simalt ~x                           " 窗口启动时自动最大化
     winpos 100 10                                     "指定窗口出现的位置,坐标原点在屏幕左上角
     set lines=38 columns=120                          "指定窗口大小,lines为高度,columns为宽度
endif
 

你可能感兴趣的:(Gvim/Vim 配置好了常用插件(Windows 与 Linux 通用))