-
Notifications
You must be signed in to change notification settings - Fork 1
/
.vimrc
executable file
·1414 lines (1237 loc) · 48.4 KB
/
.vimrc
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
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
" ----------------- Author: paranoidxe
" ----------------- Email: [email protected]
" ----------------- Date: 2015-04-03 16:23:05
" 判断工作地点,根据指定路径的文件是否存在判断
" 启动时进入工作目录
if exists("~/workspace/")
cd ~/workspace/
endif
"Set mapleader
let mapleader = ","
let g:mapleader = ","
" ---------- Ctrl系按键 ----------
"
" Ctrl + H --光标移当前行行首 [插入模式]
" Ctrl + J --光标移下一行行首 [插入模式]
" Ctrl + K --光标移上一行行尾 [插入模式]
" Ctrl + L --光标移当前行行尾 [插入模式]
" ---------- Meta系按键 ----------
"
" Alt + H --光标左移一格 [插入模式] [Linux下可能失效]
" Alt + J --光标下移一格 [插入模式] [Linux下可能失效]
" Alt + K --光标上移一格 [插入模式] [Linux下可能失效]
" Alt + L --光标右移一格 [插入模式] [Linux下可能失效]
" ---------- Leader系按键 ----------
"
" \c --复制至公共剪贴板 [仅选择模式]
" \a --复制所有至公共剪贴板 [Normal模式可用]
" \v --从公共剪贴板粘贴 [全模式可用]
"
" \rr --一键编译&&运行 [全模式可用]
" \rb --一键去除所有尾部空白 [全模式可用]
" \rm --一键去除^M字符 [全模式可用]
" \rt --一键替换全部Tab为空格 [全模式可用]
"
" \ww --打开Vimwiki主页
" \wa --一键编译所有Vimwiki源文件
" \nt --打开NERDTree文件树窗口
" \tl --打开/关闭TagList/TxtBrowser窗口
"
" \be --打开BufExplorer窗口 [独立显示] [Normal模式可用]
" \bs --打开BufExplorer窗口 [分割显示] [Normal模式可用]
" \bv --打开BufExplorer窗口 [边栏显示] [Normal模式可用]
"
" \fe --打开/关闭文件编码窗口 [Normal模式可用]
" \ff --打开文件搜索窗口 [Normal模式可用]
" \mp --生成Promptline脚本文件 [Normal模式可用]
"
" \gi --开启或关闭GitGutter [Normal模式可用]
" \gd --打开Git文件对比模式 [竖直] [Normal模式可用]
" \gs --打开Git文件对比模式 [水平] [Normal模式可用]
"
" \ig --显示/关闭对齐线 [Normal模式可用]
" \bb --按=号对齐代码 [Normal模式可用]
" \bn --自定义对齐 [Normal模式可用]
" \th --一键生成与当前编辑文件同名的HTML文件 [不输出行号]
" \ev --编辑当前所使用的Vim配置文件
"
" \cc --添加注释 [NERD_commenter]
" \cu --取消注释 [NERD_commenter]
" \cm --添加块注释 [NERD_commenter]
" \cs --添加SexStyle块注释 [NERD_commenter]
"
" \php --一键切换到PHP语法高亮
" \js --一键切换到JavaScript语法高亮
" \css --一键切换到CSS语法高亮
" \html --一键切换到HTML语法高亮
" ---------- 补全命令 ----------
"
" Ctrl + P --缓冲区补全 [插入模式]
" Tab键 --语法结构补全 [插入模式] [snipMate插件]
" Ctrl + Y + , --HTML标签补全 [插入模式] [emmet插件]
" ---------- 格式化命令 ----------
"
" == --缩进当前行
" =G --缩进直到文件结尾
" gg=G --缩进整个文件
" 行号G=行号G --缩进指定区间
" u [小写] --单步复原 [非插入模式]
" U [大写] --整行复原 [非插入模式]
" Ctrl + R --撤消“撤消”操作 [非插入模式]
"
" ---------- 查看命令 ----------
"
" Ctrl+G --显示当前文件和光标的粗略信息
" g Ctrl+G --显示当前文件和光标的详细信息
"
" ---------- 搜索命令 ----------
"
" # --向前搜索当前光标所在字符
" * --向后搜索当前光标所在字符
" ? --向前搜索
" / --向后搜索
"
" ---------- 跳转命令 ----------
"
" Ctrl + ] --转到函数定义 [ctags跳转]
" Ctrl + T --返回调用函数 [ctags跳转]
" Ctrl + O --跳到上一个编辑位置 [Normal模式]
" Ctrl + I --跳回下一个编辑位置 [Normal模式]
" 0 or ^ or $ --跳至 行首 or 第一个非空字符 or 行尾
" % --在匹配的括号间跳跃
" { or } --按段落上/下跳跃
" f字符 --跳至从当前光标开始本行第一个指定字符出现的位置
" gd --跳至当前光标所在单词首次出现的位置
" gf --打开当前光标所在的文件名,如果确实存在该文件的话
"
" ]c --跳到下一个差异处
" [c --跳到上一个差异处
"
" [ Ctrl+D --跳至当前光标所在变量的首次定义位置 [从文件头部开始]
" [ Ctrl+I --跳至当前光标所在变量的首次出现位置 [从文件头部开始]
" [ D --列出当前光标所在变量的所有定义位置 [从文件头部开始]
" [ I --列出当前光标所在变量的所有出现位置 [从文件头部开始]
"
" ---------- 文本操作 ----------
"
" dw de d0 d^ d$ dd --删除
" cw ce c0 c^ c$ cc --删除并进入插入模式
" yw ye y0 y^ y$ yy --复制
" vw ve v0 v^ v$ vv --选中
"
" di分隔符 --删除指定分隔符之间的内容 [不包括分隔符]
" ci分隔符 --删除指定分隔符之间的内容并进入插入模式 [不包括分隔符]
" yi分隔符 --复制指定分隔符之间的内容 [不包括分隔符]
" vi分隔符 --选中指定分隔符之间的内容 [不包括分隔符]
"
" da分隔符 --删除指定分隔符之间的内容 [包括分隔符]
" ca分隔符 --删除指定分隔符之间的内容并进入插入模式 [包括分隔符]
" ya分隔符 --复制指定分隔符之间的内容 [包括分隔符]
" va分隔符 --选中指定分隔符之间的内容 [包括分隔符]
"
" Xi和Xa都可以在X后面加入一个数字,以指代所处理的括号层次
" 如 d2i( 执行的是删除当前光标外围第二层括号内的所有内容
"
" dt字符 --删除本行内容,直到遇到第一个指定字符 [不包括该字符]
" ct字符 --删除本行内容,直到遇到第一个指定字符并进入插入模式 [不包括该字符]
" yt字符 --复制本行内容,直到遇到第一个指定字符 [不包括该字符]
" vt字符 --选中本行内容,直到遇到第一个指定字符 [不包括该字符]
"
" df字符 --删除本行内容,直到遇到第一个指定字符 [包括该字符]
" cf字符 --删除本行内容,直到遇到第一个指定字符并进入插入模式 [包括该字符]
" yf字符 --复制本行内容,直到遇到第一个指定字符 [包括该字符]
" vf字符 --选中本行内容,直到遇到第一个指定字符 [包括该字符]
"
" XT 和 XF 是 Xt/Xf 的反方向操作
"
" cs'" --将外围的单引号变成双引号 [surround.vim插件]
" cs"<p> --将外围的双引号变成HTML标签对 [surround.vim插件]
" cst" --将外围的界定符变成双引号 [surround.vim插件]
" ds" --删除外围的双引号定界符 [surround.vim插件]
"
" ---------- 文本比较 ----------
"
" dp --将当前文件所在差异行替换到对比文件 [give]
" do --将对比文件所在差异行替换到当前文件 [get]
"
" ---------- 便捷操作 ----------
"
" Ctrl + A --将当前光标所在数字自增1 [仅普通模式可用]
" Ctrl + X --将当前光标所在数字自减1 [仅普通模式可用]
" :g/^/m0 --将整个文件所有行排列顺序颠倒 [命令模式]
" m字符 and '字符 --标记位置 and 跳转到标记位置
" q字符 xxx q and @字符 --录制宏 and 执行宏
"
" ---------- 代码折叠 ----------
"
" zc --折叠
" zC --对所在范围内所有嵌套的折叠点进行折叠
" zo --展开折叠
" zO --对所在范围内所有嵌套的折叠点展开
" [z --到当前打开的折叠的开始处
" ]z --到当前打开的折叠的末尾处
" zj --向下移动到后一个折叠的开始处
" zk --向上移动到前一个折叠的结束处
"
" ---------- Vimwiki [Vim中的wiki/blog系统] ----------------
"
" 链接:[[链接地址|链接描述]]
" 图片:{{图片地址||属性1="属性值" 属性2="属性值"}}
" 代码:{{{语言名 代码 }}},如 {{{C++ 代码 }}}
"
" ---------- 其他常用内建命令 ------------------------------
"
" :se ff=unix --更改文件格式,可选 unix、dos、mac
" :se ft=cpp --更改文件语法着色模式
" 判断操作系统类型
"=====================
" Platform
"=====================
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
"=====================
" gui console
"=====================
if has("gui_running")
let g:isGUI = 1
else
let g:isGUI = 0
endif
"编辑vim配置文件
if has("unix")
set fileformats=unix,mac,dos
"let $VIMFILES = $HOME."/.vim"
else
set fileformats=dos,unix,mac
"let $VIMFILES = $VIM."/vimfiles"
endif
set nocompatible
filetype off
if g:islinux
set rtp+=~/.vim/bundle/Vundle.vim/
call vundle#begin()
else
set rtp+=$VIM/vimfiles/bundle/Vundle.vim
call vundle#begin('$VIM/vimfiles/bundle/')
endif
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" required!
Plugin 'gmarik/Vundle.vim'
" My Bundles here:
"Color
Plugin 'asins/vim-colors'
Plugin 'flazz/vim-colorschemes'
Plugin 'altercation/vim-colors-solarized'
Plugin 'Mustang2'
Plugin 'Railscasts-Theme-GUIand256color'
Plugin 'darktango.vim'
Plugin 'junegunn/seoul256.vim'
Plugin 'NLKNguyen/papercolor-theme'
Plugin 'scrooloose/nerdtree'
Plugin 'tpope/vim-fugitive'
Plugin 'bling/vim-airline'
Plugin 'kien/ctrlp.vim'
Plugin 'tacahiroy/ctrlp-funky'
"Plugin 'jrhorn424/vim-multiple-cursors'
Plugin 'sirver/ultisnips'
Plugin 'nathanaelkane/vim-indent-guides'
Plugin 'vim-scripts/OmniCppComplete'
Plugin 'kevinw/pyflakes'
Plugin 'asins/vim-dict'
"Plugin 'itspriddle/vim-marked'
"let g:marked_app = "Marked"
Plugin 'scrooloose/nerdcommenter'
Plugin 'asins/renamer.vim'
Plugin 'auto_mkdir'
"Plugin 'winmanager'
Plugin 'jlanzarotta/bufexplorer'
Plugin 'eiginn/netrw'
" Syntax
Plugin 'othree/html5.vim'
Plugin 'othree/html5-syntax.vim'
Plugin 'pangloss/vim-javascript'
Plugin 'nono/jquery.vim'
Plugin 'groenewege/vim-less'
"live script
Plugin 'gkz/vim-ls'
" Indent
"Plugin 'IndentAnything'
Plugin 'jiangmiao/simple-javascript-indenter'
Plugin 'Yggdroot/indentLine'
Plugin 'Shougo/neocomplete.vim'
"Plugin 'asins/mark'
"Plugin 'Mark--Karkat'
" HTML tools
Plugin 'mattn/emmet-vim'
Plugin 'tpope/vim-ragtag'
Plugin 'matchit.zip' " 通过%跳转配对代码
Plugin 'MatchTag' " HTML标签高亮配对
Plugin 'maksimr/vim-jsbeautify' "HTML/CSS/JS代码格式化
"标签导航
Plugin 'majutsushi/tagbar'
Plugin 'vim-scripts/taglist.vim'
Plugin 'slim-template/vim-slim'
Plugin 'vim-coffee-script'
Plugin 'AndrewRadev/vim-eco'
Plugin 'sudo.vim'
Plugin 'xml.vim'
"Plugin 'othree/xml.vim'
"Plugin 'honza/vim-snippets'
Plugin 'tpope/vim-bundler'
Plugin 'tpope/vim-dispatch'
"Plugin 'Lokaltog/vim-powerline'
"Plugin 'tpope/vim-fugitive'
Plugin 'Lokaltog/vim-easymotion'
Plugin 'godlygeek/tabular'
Plugin 'mitsuhiko/jinja2'
Plugin 'Glench/Vim-Jinja2-Syntax'
Plugin 'jason0x43/vim-js-indent'
Plugin 'elzr/vim-json'
Plugin 'briancollins/vim-jst'
Plugin 'mxw/vim-jsx'
Plugin 'JuliaLang/julia-vim'
Plugin 'udalov/kotlin-vim'
Plugin 'vim-latex/vim-latex'
Plugin 'rkulla/pydiction'
Plugin 'baskerville/bubblegum'
Plugin 'chriskempson/base16-vim'
"Plugin 'walm/jshint.vim'
"修改版本
Plugin 'vim-scripts/snipmate'
"Plugin 'msanders/snipmate.vim'
"Plugin 'Align'
Plugin 'a.vim'
Plugin 'jiangmiao/auto-pairs'
Plugin 'ccvext.vim'
Plugin 'cSyntaxAfter'
"Syntax
Plugin 'NLKNguyen/c-syntax.vim'
Plugin 'octol/vim-cpp-enhanced-highlight'
Plugin 'dtrace-syntax-file'
Plugin 'raichoo/haskell-vim'
Plugin 'aklt/plantuml-syntax'
Plugin 'vim-scripts/mips.vim'
Plugin 'Shirk/vim-gas'
Plugin 'skammer/vim-css-color'
Plugin 'hail2u/vim-css3-syntax'
Plugin 'd0f/vim-css3'
Plugin 'mbbill/fencview'
Plugin 'othree/javascript-libraries-syntax.vim'
Plugin 'edkolev/promptline.vim'
Plugin 'tomtom/tlib_vim'
Plugin 'tomtom/vimtlib'
"Plugin 'repeat.vim'
Plugin 'wesleyche/SrcExpl'
Plugin 'std_c.zip'
Plugin 'scrooloose/syntastic'
Plugin 'TxtBrowser'
Plugin 'xsbeats/vim-blade'
"Plugin 'tpope/vim-bundler'
Plugin 'ZoomWin'
Plugin 'mattn/calendar.vim'
Plugin 'd0f/vim-clojure'
Plugin 'd0f/vim-cpp11'
Plugin 'd0f/vim-cppstl'
Plugin 'd0f/vim-csharp'
Plugin 'd0f/vim-csv'
Plugin 'd0f/vim-dart'
Plugin 'd0f/vim-erlang'
Plugin 'd0f/vim-scss'
Plugin 'elixir-lang/vim-elixir'
Plugin 'd0f/vim-fsharp'
Plugin 'andreimaxim/vim-io'
Plugin 'd0f/vim-gtk'
Plugin 'd0f/vim-haskell'
Plugin 'd0f/vim-haxe'
Plugin 'd0f/vim-java'
Plugin 'vim-perl/vim-perl'
Plugin 'StanAngeloff/php.vim'
Plugin '2072/PHP-Indenting-for-VIm'
Plugin 'hdima/python-syntax'
Plugin 'wlangstroth/vim-racket'
Plugin 'tpope/vim-rails'
Plugin 'Keithbsmiley/swift.vim'
Plugin 'leafgarland/typescript-vim'
Plugin 'nickhutchinson/vim-systemtap'
Plugin 'vim-ruby/vim-ruby'
Plugin 'rust-lang/rust.vim'
"Plugin 'beyondwords/vim-twig'
Plugin 'derekwyatt/vim-scala'
"Plugin 'Shougo/vimshell.vim'
Plugin 'mustache/vim-mustache-handlebars'
Plugin 'fatih/vim-nginx'
Plugin 'b4winckler/vim-objc'
Plugin 'jvirtanen/vim-octave'
Plugin 'digitaltoad/vim-jade'
Plugin 'velocity.vim'
"Plugin 'TaskList.vim'
"Plugin 'tpope/vim-markdown'
Plugin 'plasticboy/vim-markdown'
Plugin 'Rykka/InstantRst'
Plugin 'Rykka/riv.vim'
Plugin 'hotoo/pangu.vim'
Plugin 'airblade/vim-gitgutter'
Plugin 'gregsexton/gitv'
Plugin 'tpope/vim-commentary'
Plugin 'tpope/vim-surround'
Plugin 'Raimondi/delimitMate'
Plugin 'hsitz/VimOrganizer'
Plugin 'youjumpiwatch/vim-javacomplete'
Plugin 'jaytang0923/project.vim'
Plugin 'lepture/vim-jinja'
if version < 704
Plugin 'JulesWang/css.vim'
endif
Plugin 'cakebaker/scss-syntax.vim'
Plugin 'stephpy/vim-yaml'
Plugin 'cstrahan/vim-capnp'
Plugin 'dag/vim2hs'
"Plugin 'Shougo/unite.vim'
Plugin 'Shougo/vimfiler.vim'
Plugin 'sjl/gundo.vim'
Plugin 'davidhalter/jedi-vim'
Plugin 'rhysd/committia.vim'
"Plugins for golang
Plugin 'fatih/vim-go'
Plugin 'Blackrush/vim-gocode'
Plugin 'dgryski/vim-godef'
call vundle#end() " required
filetype plugin indent on " required
"goimports settings
autocmd BufWritePre *.go :Fmt
syntax enable
filetype plugin on
set shell=/bin/sh
let g:neocomplete#enable_at_startup = 1
let g:tagbar_type_go = {
\ 'ctagstype' : 'go',
\ 'kinds' : [
\ 'p:package',
\ 'i:imports:1',
\ 'c:constants',
\ 'v:variables',
\ 't:types',
\ 'n:interfaces',
\ 'w:fields',
\ 'e:embedded',
\ 'm:methods',
\ 'r:constructor',
\ 'f:functions'
\ ],
\ 'sro' : '.',
\ 'kind2scope' : {
\ 't' : 'ctype',
\ 'n' : 'ntype'
\ },
\ 'scope2kind' : {
\ 'ctype' : 't',
\ 'ntype' : 'n'
\ },
\ 'ctagsbin' : 'gotags',
\ 'ctagsargs' : '-sort -silent'
\ }
"Autocmd for golint
"set rtp+=$GOPATH/src/github.com/golang/lint/misc/vim
"autocmd BufWritePost,FileWritePost *.go execute 'Lint' | cwindow
filetype plugin indent on " required!
" 文件格式,默认 ffs=dos,unix
set fileformat=unix
set fileformats=unix,dos,mac
"set noeb "去掉输入错误的提示声音
set confirm " 在处理未保存或只读文件的时候,弹出确认
"set paste
set clipboard+=unnamed " 与windows共享剪贴板
set undolevels=1000 " number of forgivable mistakes
set updatecount=100 " write swap file to disk every 100 chars
set complete=.,w,b,u,U,t,i,d " do lots of scanning on tab completion
"set copyindent " copy the previous indentation on autoindenting
" auto reload vimrc when editing it
autocmd! bufwritepost .vimrc source ~/.vimrc
" 保存全局变量
set viminfo+=!
set viminfo=%100,'100,/100,h,\"500,:100,n~/.viminfo
" 带有如下符号的单词不要被换行分割
set iskeyword+=_,$,@,%,#,-
set ambiwidth=double
set imcmdline
set go= "不要图形按钮
set novisualbell " 不要闪烁(不明白)
"autocmd GUIEnter * simalt ~x
set guioptions=EgrLt
map <silent> <M-m> :if &guioptions =~# 'T' <Bar>
\set guioptions-=T <Bar>
\set guioptions-=m <bar>
\else <Bar>
\set guioptions+=T <Bar>
\set guioptions+=m <Bar>
\endif<CR>
" 对部分语言设置单独的缩进
au FileType groovy,scala,clojure,scheme,racket,lisp,lua,ruby,eruby,slim,elixir,julia,dart,haxe,coffee,jade,sh set shiftwidth=2
au FileType groovy,scala,clojure,scheme,racket,lisp,lua,ruby,eruby,slim,elixir,julia,dart,haxe,coffee,jade,sh set tabstop=2
" 根据后缀名指定文件类型
au BufRead,BufNewFile *.h setlocal ft=c
au BufRead,BufNewFile *.m setlocal ft=objc
au BufRead,BufNewFile *.di setlocal ft=d
au BufRead,BufNewFile *.cl setlocal ft=lisp
au BufRead,BufNewFile *.phpt setlocal ft=php
au BufRead,BufNewFile *.inc setlocal ft=php
au BufRead,BufNewFile *.sql setlocal ft=mysql
au BufRead,BufNewFile *.tpl setlocal ft=smarty
au BufRead,BufNewFile *.txt setlocal ft=txt
au BufRead,BufNewFile *.log setlocal ft=conf
au BufRead,BufNewFile hosts setlocal ft=conf
au BufRead,BufNewFile http*.conf setlocal ft=apache
au BufRead,BufNewFile *.conf setlocal ft=nginx
au BufRead,BufNewFile *.ini setlocal ft=dosini
" txtbrowser {{{
" 用于文本文件生成标签与与语法高亮(调用TagList插件生成标签,如果可以)
au BufRead,BufNewFile *.txt setlocal ft=txt
" }}}
set showtabline=2 " always display tab page labels
set number " show line number
set laststatus=2 " always show the status line
set showcmd " display incomplete commands
set cmdheight=2 " the height of command bar is 2 lines
if has('gui_running')
autocmd GUIEnter * winpos 0 0 | set lines=999 columns=9999
let g:Powerline_symbols = 'fancy'
set guifont=Hack\ DejaVu\ Sans\ Mono\ for\ Powerline\ 9,Menlo:h12,Consolas:h12:cANSI,Monaco:h12
"set guifont=Source\ Code\ Pro\ 12,DejaVu\ 9,Consolas\ Powerline\ FixedD:h13
set guioptions-=m "Remove menubar"
set guioptions-=T "Remove toolbar"
" fix the gui menu encoding problem
if has("gui_win32")
source $VIMRUNTIME/delmenu.vim
source $VIMRUNTIME/menu.vim
endif
endif
"Set font
if has("gui_gtk2")
colorscheme PaperColor
set guifont=DejaVu\ Sans\ Mono\ 12
elseif has("gui_macvim")
set guifont=DejaVu_Sans_Mono:h12
elseif has("gui_win32")
set guifont=DejaVu_Sans_Mono:h12
end
if has("linux")
Ubuntu 14.04下GVIM的字体间距过宽
set gfn=Source\ Code\ Pro\ 12,DejaVu\ 9,Bitstream\ Vera\ Sans\ Mono\ 11
endif
set guifont=Hack\ 12
" 设置着色模式和字体
syntax on
if has('gui_running')
set background=dark
colorscheme PaperColor
else
set background=dark
endif
colorscheme solarized
"colorscheme molokai
set background=light
let g:solarized_termcolors=256
set mouse=a selection=exclusive selectmode=mouse,key " 启用鼠标
"set nomodeline " using the 'securemodelines' plugin instead
set printfont=courier:h8
set printoptions=paper:letter
set mousem=popup "Enable the popup menu.
" status line {{{
set laststatus=2 " 开启状态栏信息
set showcmd " Show current vim command in status bar
set ruler " 右下角显示光标位置的状态行
set modelines=1
set rulerformat=%55(%{strftime('%a\ %b\ %e\ %I:%M\ %p')}\ %5l,%-6(%c%V%)\ %P%)
let g:airline_powerline_fonts = 1
if !exists('g:airline_symbols')
let g:airline_symbols = {}
endif
" }}}
set nocompatible " 关闭兼容模式
set autochdir " 设定文件浏览器目录为当前目录
set cmdheight=2 " 命令行的高度,默认为1,这里设为2
" 如遇Unicode值大于255的文本,不必等到空格再折行。
set formatoptions+=m
" 自动补全配置让Vim补全菜单行为跟IDE一致
set completeopt=longest,menu
" general settings {{{
"set nobackup " 不生成备份文件
"set noswapfile " 不生成交换文件
"set nobackup " 取消备份。 视情况自己改
"set noswapfile " 关闭交换文件,IMPORTANT: comment this line if you are working on a remote host
"set nowritebackup
"保存关闭文件之前保留一个备份
"set writebackup
set backup
"set backupext=.bak
set backupext=~
"set patchmode=.orig
set backupdir=~/.vim/backup
set directory=~/.vim/tmp " directory to place swap files in
"set backupskip=/tmp/*
"set backupdir=E:\Bak
"set backupskip=D:/Temp/*
" 优化大文件编辑
let g:LargeFile=10
set hidden " 允许在有未保存的修改时切换缓冲区
set autoread " 当文件在外部被修改时自动更新该文件
set history=1000
set backspace=indent,eol,start
"在输入命令时列出匹配的项目,也就是截图底部的效果
set wildmenu " 开启命令行补全
set wildmode=longest,full
set wildignore=*.swp,*.bak,*.pyc,*.class,.svn,*.o,*~,tmp,.bundle,.sass-cache,.git,.hg,doc,coverage,vendor,node_modules,deps
set scrolloff=3
set splitright
set splitbelow
set t_vb=
set noerrorbells
set novisualbell
set t_Co=256
set ttyfast
set lazyredraw
set timeoutlen=500
" }}}
" colors, formatting and syntax highlighting {{{
syntax enable " 打开语法高亮
syntax on " 开启文件类型侦测
filetype indent on " 针对不同的文件类型采用不同的缩进格式
filetype plugin on " 针对不同的文件类型加载对应的插件
filetype plugin indent on " 启用自动补全
set background=dark
set cursorcolumn
"set cursorline
"set nowrap " 设置不自动换行
set synmaxcol=200 " Do not highlight long lines
set softtabstop=2
set tabstop=2
set shiftwidth=2 " 设置通用缩进策略
set shiftround
set expandtab " 将Tab自动转化成空格 [需要输入真正的Tab键时,使用 Ctrl+V + Tab]
set autoindent " 自动对齐
"set ai! " 设置自动缩进
set smartindent " 智能自动缩进
set nojoinspaces
set number
"set nu! " 显示行号
"set relativenumber " 开启相对行号
set numberwidth=4
set backspace=2 " 设置退格键可用
set linespace=1 "行间距,如果默认值太小,代码看起来非常纠结
"set encoding=utf-8
set list " 显示特殊字符,其中Tab使用高亮~代替,尾部空白使用高亮点号代替
"set listchars=tab:\~\ ,trail:.
set listchars=tab:\~\ ,eol:$,trail:.,extends:»,precedes:«,nbsp:+
" }}}
" searching {{{
set hlsearch " 开启高亮显示结果
set incsearch " 开启实时搜索功能
set ignorecase
set nowrapscan " 搜索到文件两端时不重新搜索
set smartcase
set showfulltag " Get function usage help automatically
set showmatch " Show matching parentheses/brackets
"set showmatch " 显示括号配对情况
set showmode " Show current vim mode
if executable("ack")
set grepprg=ack\ -H\ --nogroup\ --nocolor\ --ignore-dir=tmp\ --ignore-dir=doc
endif
" }}}
" Folding {{{
"set foldenable "启用折叠
"set foldlevelstart=10
"set foldnestmax=10
"set foldmethod=indent "indent 折叠方式
"set foldmethod=marker "marker 折叠方式
set foldlevel=100 " 禁止自动折叠
" }}}
" 设置文件编码和文件格式
set fenc=utf-8
set encoding=utf-8
set fileencodings=utf-8,gbk,cp936,latin-1
set fileformat=unix
set fileformats=unix,mac,dos
if g:iswindows
source $VIMRUNTIME/delmenu.vim
source $VIMRUNTIME/menu.vim
language messages zh_CN.utf-8
endif
"=====================
"Enhanced cursor
"====================
"set cursorcolumn
"set cursorline
"if version >= 703
"if exists('+colorcolumn')
" set colorcolumn=80
" hi ColorColumn ctermbg=lightred guibg=lightred
"endif
" Set colorcolumn to match coding styleguides of various source trees.
if exists("&colorcolumn") " old vim doesn't have colorcolumn
set colorcolumn=+1 " highlight the column after 'textwidth'
au BufRead,BufNewFile,BufWritePost *
\ if expand('<amatch>') =~ '\v^/.*/(source|work/.*)/client[^/]*/.*$' |
\ setl textwidth=80 colorcolumn=121 |
\ elseif expand('<amatch>') =~ '\v^/.*/(source|work/.*)/(server|go-server|configs)/.*$' |
\ setl textwidth=80 colorcolumn=101 |
\ endif
" Prefer not to aggressively line-wrap some file types
au FileType vim setl colorcolumn=
endif
" Low priority filename suffixes for filename completion {{{
"set suffixes-=.h " Don't give .h low priority
"set suffixes+=.aux
"set suffixes+=.log
"set wildignore+=*.dvi
"set suffixes+=.bak
"set suffixes+=~
"set suffixes+=.swp
"set suffixes+=.o
"set suffixes+=.class
" }}}
"分割窗口的时候保持相等的宽/高
set equalalways
set shortmess=atI " 启动的时候不显示那个援助索马里儿童的提示
set background=dark
" 使用GUI界面时的设置
if g:isGUI
" 启动时自动最大化窗口
if g:iswindows
au GUIEnter * simalt ~x
winpos 100 10 "指定窗口出现的位置,坐标原点在屏幕左上角 100 10
set lines=30 columns=112 "指定窗口大小,lines为高度,columns为宽度
"set lines=9999
"set columns=9999
endif
winpos 410 230 " 指定窗口出现的位置,坐标原点在屏幕左上角
set lines=20 columns=90 " 指定窗口大小,lines为高度,columns为宽度
set guioptions+=c " 使用字符提示框
set guioptions-=m " 隐藏菜单栏
set guioptions-=T " 隐藏工具栏
set guioptions-=L " 隐藏左侧滚动条
set guioptions-=r " 隐藏右侧滚动条
set guioptions-=b " 隐藏底部滚动条
set showtabline=0 " 隐藏Tab栏
set cursorline " 高亮突出当前行
"set cursorcolumn " 高亮突出当前列
endif
" 把 CTRL-S 映射为 保存,因为这个操作做得太习惯了
imap <C-S> <C-C>:w<CR>
" ======= 引号 && 括号自动匹配 ======= "
:inoremap ( ()<ESC>i
:inoremap ) <c-r>=ClosePair(')')<CR>
:inoremap { {}<ESC>i
:inoremap } <c-r>=ClosePair('}')<CR>
:inoremap [ []<ESC>i
:inoremap ] <c-r>=ClosePair(']')<CR>
:inoremap " ""<ESC>i
:inoremap ' ''<ESC>i
:inoremap ` ``<ESC>i
function ClosePair(char)
if getline('.')[col('.') - 1] == a:char
return "\<Right>"
else
return a:char
endif
endf
" 加载pathogen插件管理器
"execute pathogen#infect()
" 针对部分语言加减指定字符的单词属性
au FileType clojure set iskeyword-=.
au FileType clojure set iskeyword-=>
au FileType perl,php set iskeyword-=.
au FileType perl,php set iskeyword-=$
au FileType perl,php set iskeyword-=-
au FileType ruby set iskeyword+=!
au FileType ruby set iskeyword+=?
if exists("did_load_filetypes")
finish
endif
augroup filetypedetect
au! BufNewFile,BufRead *.zu setf zimbu
augroup END
augroup vimrc_autocmds
autocmd!
" highlight characters past column 120
autocmd FileType python highlight Excess ctermbg=DarkGrey guibg=Black
autocmd FileType python match Excess /\%120v.*/
autocmd FileType python set nowrap
augroup END
" 针对部分语言添加字典补全
au FileType c call AddCDict()
au FileType cpp call AddCPPDict()
au FileType java call AddJavaDict()
au FileType lua call AddLuaDict()
au FileType perl call AddPerlDict()
au FileType php call AddPHPDict()
au FileType python call AddPythonDict()
au FileType ruby call AddRubyDict()
au FileType scala call AddScalaDict()
au FileType javascript call AddJavaScriptDict()
au FileType css call AddCSSDict()
function AddCDict()
if g:iswindows
set dict+=$VIM/vimfiles/dict/c.txt
else
set dict+=~/.vim/dict/c.txt
endif
set complete+=k
endfunction
function AddCPPDict()
if g:iswindows
set dict+=$VIM/vimfiles/dict/c.txt
set dict+=$VIM/vimfiles/dict/cpp-stdlib.txt
set dict+=$VIM/vimfiles/dict/cpp-boost.txt
else
set dict+=~/.vim/dict/c.txt
set dict+=~/.vim/dict/cpp-stdlib.txt
set dict+=~/.vim/dict/cpp-boost.txt
endif
set complete+=k
endfunction
function AddJavaDict()
if g:iswindows
set dict+=$VIM/vimfiles/dict/java.txt
else
set dict+=~/.vim/dict/java.txt
endif
set complete+=k
endfunction
function AddLuaDict()
if g:iswindows
set dict+=$VIM/vimfiles/dict/lua.txt
else
set dict+=~/.vim/dict/lua.txt
endif
set complete+=k
endfunction
function AddPerlDict()
if g:iswindows
set dict+=$VIM/vimfiles/dict/perl.txt
else
set dict+=~/.vim/dict/perl.txt
endif
set complete+=k
endfunction
function AddPHPDict()
if g:iswindows
set dict+=$VIM/vimfiles/dict/php.txt
else
set dict+=~/.vim/dict/php.txt
endif
set complete+=k
endfunction
function AddPythonDict()
if g:isWIN
set dict+=$VIM/vimfiles/dict/python.txt
else
set dict+=~/.vim/dict/python.txt
endif
set complete+=k
endfunction
function AddRubyDict()
if g:iswindows
set dict+=$VIM/vimfiles/dict/ruby.txt
else
set dict+=~/.vim/dict/ruby.txt
endif
set complete+=k
endfunction
function AddScalaDict()
if g:iswindows
set dict+=$VIM/vimfiles/dict/scala.txt
else
set dict+=~/.vim/dict/scala.txt
endif
set complete+=k
endfunction
function AddJavaScriptDict()
if g:iswindows
set dict+=$VIM/vimfiles/dict/javascript.txt
set dict+=$VIM/vimfiles/dict/node.txt
else
set dict+=~/.vim/dict/javascript.txt
set dict+=~/.vim/dict/node.txt
endif
set complete+=k
endfunction
function AddCSSDict()
if g:iswindows
set dict+=$VIM/vimfiles/dict/css.txt
else
set dict+=~/.vim/dict/css.txt
endif
set complete+=k
endfunction
" 开启部分语法高亮的非默认特性
let g:cpp_class_scope_highlight = 1 " 高亮C++ class scope
let g:cpp_experimental_template_highlight = 1 " 高亮C++ template functions
let g:go_auto_type_info = 0 " 关闭Go语言自动显示类型信息(默认就是关闭的,此处用于方便需要时开启)
let g:go_def_mapping_enabled = 0 " 关闭Go语言对gd的绑定
let g:go_highlight_operators = 1 " 开启Go语言操作符高亮
let g:go_highlight_functions = 1 " 开启Go语言函数名高亮
let g:go_highlight_methods = 1 " 开启Go语言方法名高亮
let g:go_highlight_structs = 1 " 开启Go语言结构体名高亮
let g:haskell_enable_quantification = 1 " 开启Haskell高亮 forall
let g:haskell_enable_recursivedo = 1 " 开启Haskell高亮 mdo and rec
let g:haskell_enable_arrowsyntax = 1 " 开启Haskell高亮 proc