我的vim配置文件

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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
" -----------------  Author: Ruchee
" ----------------- Email: my@ruchee.com
" ----------------- Date: 2022-03-19 19:47:05
" ----------------- https://github.com/ruchee/vimrc


" ---------- Ctrl 系按键 ----------
"
" Ctrl + H 光标移当前行行首 [插入模式]
" Ctrl + J 光标移下一行行首 [插入模式]
" Ctrl + K 光标移上一行行尾 [插入模式]
" Ctrl + L 光标移当前行行尾 [插入模式]

" ---------- Leader 系按键 ----------
"
" \c 复制至公共剪贴板 [仅选择模式]
" \a 复制所有至公共剪贴板 [Normal 模式可用]
" \v 从公共剪贴板粘贴 [全模式可用]
"
" \rr 一键编译 && 运行 [全模式可用]
" \rb 一键去除全部尾部空白 [全模式可用]
" \rm 一键去除全部 ^M 字符 [全模式可用]
" \rt 一键替换全部 Tab 为空格 [全模式可用]
" \ra 一键清理当前代码文件 [Normal 模式可用]
"
" \ww 打开 Vimwiki 主页
" \wa 一键编译所有 Vimwiki 源文件
" \nt 打开 NERDTree 文件树窗口
" \ut 打开/关闭 Undotree 文档编辑历史窗口
" \tl 打开/关闭 Tags 窗口
"
" \be 打开 BufExplorer 窗口 [独立显示] [Normal 模式可用]
" \bs 打开 BufExplorer 窗口 [分割显示] [Normal 模式可用]
" \bv 打开 BufExplorer 窗口 [边栏显示] [Normal 模式可用]
"
" \fe 打开/关闭文件编码窗口 [Normal 模式可用]
" \mp 生成 Promptline 脚本文件 [Normal 模式可用]
"
" \gi 开启或关闭 GitGutter [Normal 模式可用]
" \gd 打开 Git 文件对比模式 [Normal 模式可用]
" \gl 调用 Tig 查看提交日志 [Normal 模式可用]
"
" \il 显示/关闭对齐线 [Normal 模式可用]
" \bb 按 = 号对齐代码 [Normal 模式可用]
" \bn 自定义对齐 [Normal 模式可用]
" \th 一键生成与当前编辑文件同名的 HTML 文件 [不输出行号]
" \ev 编辑当前所使用的 Vim 配置文件
"
" \cc 添加行注释 [NERD_commenter]
" \cm 添加块注释 [NERD_commenter]
" \cs 添加 SexStyle 块注释 [NERD_commenter]
" \cu 取消注释 [NERD_commenter]
"
" \php 一键切换到 PHP 语法高亮
" \ruby 一键切换到 Ruby 语法高亮
" \eruby 一键切换到 eRuby 语法高亮
" \cf 一键切换到 Coffee 语法高亮
" \ts 一键切换到 TypeScript 语法高亮
" \js 一键切换到 JavaScript 语法高亮
" \jsx 一键切换到 JSX 语法高亮
" \css 一键切换到 CSS 语法高亮
" \html 一键切换到 HTML 语法高亮

" ---------- 补全命令 ----------
"
" Ctrl + P 缓冲区补全 [插入模式]
" Ctrl + U 全能补全 [插入模式]
" Tab键 语法结构补全 [插入模式] [snipMate 插件]
" Ctrl + Y + , HTML标签补全 [插入模式] [emmet 插件]

" ---------- 格式化命令 ----------
"
" == 缩进当前行
" =G 缩进直到文件结尾
" gg=G 缩进整个文件
" 行号G=行号G 缩进指定区间

" u [小写] 单步复原 [非插入模式]
" U [大写] 整行复原 [非插入模式]
" Ctrl + R 反撤消 [非插入模式]
"
" \pcf 格式化当前 PHP 文件 [Normal 模式] [php-cs-fixer 插件]
" \pcd 格式化当前目录下的所有 PHP 文件 [Normal 模式] [php-cs-fixer 插件]
" \fc 格式化当前文件的代码 [Normal 模式] [主要针对前端代码文件] [需要安装 prettier 可执行文件]
"
" ---------- 查看命令 ----------
"
" Ctrl+G 显示当前文件和光标的粗略信息
" g Ctrl+G 显示当前文件和光标的详细信息
"
" ---------- 搜索命令 ----------
"
" # 向前搜索当前光标所在字符
" * 向后搜索当前光标所在字符
" ? 向前搜索
" / 向后搜索
" :%s/xx/yy/g 正则搜索替换
"
" ?? 向前搜索 [PCRE 风格] [由 eregex 插件提供]
" // 向后搜索 [PCRE 风格] [由 eregex 插件提供]
" :%S/xx/yy/g 正则搜索替换 [PCRE 风格] [由 eregex 插件提供]
"
" Ctrl + P 在当前工程目录搜索文件 [Normal 模式] [ctrlp 插件] [此插件功能颇多,具体可查看其文档]
" \ss 在当前所在目录搜索单词 [Normal 模式] [ack 插件]
" \ff 搜索当前文件中的类、方法、函数名 [Normal 模式] [ctrlp-funky 插件]
"
" ---------- 跳转命令 ----------
"
" 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 插件]
" cs"<p> 将外围的双引号变成 HTML 标签对 [surround 插件]
" cst" 将外围的界定符变成双引号 [surround 插件]
" ds" 删除外围的双引号定界符 [surround 插件]
"
" ---------- 文本比较 ----------
"
" dp 将当前文件所在差异行替换到对比文件 [保留当前文件的改动]
" do 将对比文件所在差异行替换到当前文件 [保留对比文件的改动]

" \ml 保留本分支的改动 [git mergetool -t vimdiff 时可用]
" \mr 保留它分支的改动 [git mergetool -t vimdiff 时可用]
" \mb 保留基分支的改动 [git mergetool -t vimdiff 时可用]
" \mu 刷新比较结果 [git mergetool -t vimdiff 时可用]
"
" ---------- 便捷操作 ----------
"
" Ctrl + A 将当前光标所在数字自增1 [Normal 模式可用]
" Ctrl + X 将当前光标所在数字自减1 [Normal 模式可用]
" :g/^/m0 将整个文件所有行排列顺序颠倒 [命令模式]
" m字符 and '字符 标记位置 and 跳转到标记位置
" q字符 xxx q and @字符 录制宏 and 执行宏
"
" ---------- 代码折叠 ----------
"
" zc 折叠
" zC 对所在范围内所有嵌套的折叠点进行折叠
" zo 展开折叠
" zO 对所在范围内所有嵌套的折叠点展开
" [z 到当前打开的折叠的开始处
" ]z 到当前打开的折叠的末尾处
" zj 向下移动到后一个折叠的开始处
" zk 向上移动到前一个折叠的结束处
"
" ---------- 服务器文件传输 ----------
"
" \uu 向服务器上传文件 [sync 插件]
" \dd 从服务器下载文件 [sync 插件]
"
" ---------- Vimwiki [Vim 中的 wiki 系统] ----------------
"
" 链接:[[链接地址|链接描述]]
" 图片:{{图片地址||属性1="属性值" 属性2="属性值"}}
" 代码:{{{语言名 代码 }}},如 {{{C++ 代码 }}}
"
" ---------- 其他常用内建命令 ------------------------------
"
" :se ff=unix 更改文件格式,可选 unix、dos、mac
" :se ft=cpp 更改文件语法着色模式


" 判断操作系统类型
if(has('win32') || has('win64'))
let g:isWIN = 1
let g:isMAC = 0
else
if system('uname') =~ 'Darwin'
let g:isWIN = 0
let g:isMAC = 1
else
let g:isWIN = 0
let g:isMAC = 0
endif
endif


" 判断是否处于 GUI 界面
if has('gui_running')
let g:isGUI = 1
else
let g:isGUI = 0
endif


" 设置通用缩进策略 [四空格缩进]
set shiftwidth=4
set tabstop=4

" 对部分语言设置单独的缩进 [两空格缩进]
au FileType scheme,racket,lisp,clojure,lfe,elixir,eelixir,ruby,eruby,coffee,slim,pug,scss set shiftwidth=2
au FileType scheme,racket,lisp,clojure,lfe,elixir,eelixir,ruby,eruby,coffee,slim,pug,scss set tabstop=2

" 配置 Rust 支持
let g:rustfmt_autosave = 1 " 保存时自动格式化代码

" 修正 Go 语言的部分快捷键 [需要安装一堆工具才能正常工作,可在 Vim 里面执行 :GoInstallBinaries 命令完成安装,需要翻墙才能安装成功]
au FileType go nmap <c-[> :GoInfo<cr>
au FileType go nmap <c-]> :GoDef<cr>
au FileType go nmap <c-t> <c-o>

" 忽略 Go 插件的版本警告
let g:go_version_warning = 0

" JSX 文件必须匹配完整的扩展名才以 JSX 语法渲染
let g:jsx_ext_required = 1

" Haxe 关闭默认的 airline 支持
let g:vaxe_enable_airline_defaults = 0

" 根据后缀名指定文件类型
au BufRead,BufNewFile *.h set ft=c
au BufRead,BufNewFile *.i set ft=c
au BufRead,BufNewFile *.m set ft=objc
au BufRead,BufNewFile *.di set ft=d
au BufRead,BufNewFile *.ss set ft=scheme
au BufRead,BufNewFile *.cl set ft=lisp
au BufRead,BufNewFile *.phpt set ft=php
au BufRead,BufNewFile *.inc set ft=php
au BufRead,BufNewFile *.cson set ft=coffee
au BufRead,BufNewFile *.sql set ft=mysql
au BufRead,BufNewFile *.tpl set ft=smarty
au BufRead,BufNewFile *.txt set ft=txt
au BufRead,BufNewFile *.log set ft=conf
au BufRead,BufNewFile hosts set ft=conf
au BufRead,BufNewFile *.conf set ft=dosini
au BufRead,BufNewFile http*.conf set ft=apache
au BufRead,BufNewFile *.ini set ft=dosini

au BufRead,BufNewFile */nginx/*.conf set ft=nginx
au BufRead,BufNewFile */nginx/**/*.conf set ft=nginx
au BufRead,BufNewFile */openresty/*.conf set ft=nginx
au BufRead,BufNewFile */openresty/**/*.conf set ft=nginx

au BufRead,BufNewFile *.yml.bak set ft=yaml
au BufRead,BufNewFile *.yml.default set ft=yaml
au BufRead,BufNewFile *.yml.example set ft=yaml

au BufRead,BufNewFile CMakeLists.txt set ft=cmake


" 设置着色模式和字体
if g:isWIN
colorscheme molokai
set guifont=Monaco:h11
elseif g:isMAC
colorscheme molokai
set guifont=Monaco:h16
else
colorscheme molokai
set guifont=Monaco\ 16
endif


set backspace=2 " 设置退格键可用
set autoindent " 自动对齐
set ai! " 设置自动缩进
set smartindent " 智能自动缩进
set relativenumber " 开启相对行号
set nu! " 显示行号
set ruler " 右下角显示光标位置的状态行
set incsearch " 开启实时搜索功能
set hlsearch " 开启高亮显示结果
set nowrapscan " 搜索到文件两端时不重新搜索
set nocompatible " 关闭兼容模式
set hidden " 允许在有未保存的修改时切换缓冲区
set autochdir " 设定文件浏览器目录为当前目录
set foldmethod=indent " 选择代码折叠类型
set foldlevel=100 " 禁止自动折叠
set laststatus=2 " 开启状态栏信息
set cmdheight=2 " 命令行的高度,默认为1,这里设为2
set autoread " 当文件在外部被修改时自动更新该文件
set nobackup " 不生成备份文件
set noswapfile " 不生成交换文件
set list " 显示特殊字符,其中Tab使用高亮~代替,尾部空白使用高亮点号代替
set listchars=tab:\~\ ,trail:.
set expandtab " 将 Tab 自动转化成空格 [需要输入真正的 Tab 符时,使用 Ctrl+V + Tab]
"set showmatch " 显示括号配对情况
set splitbelow " :sp 切分窗口显示在下侧
set splitright " :vsp 切分窗口显示在右侧
set shell=bash " Terminal 默认使用 Bash

" 使用 vimdiff 时,长行自动换行
autocmd FilterWritePre * if &diff | setlocal wrap< | endif

syntax enable " 打开语法高亮
syntax on " 开启文件类型侦测
filetype indent on " 针对不同的文件类型采用不同的缩进格式
filetype plugin on " 针对不同的文件类型加载对应的插件
filetype plugin indent on " 启用自动补全


" 设置文件编码和文件格式
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:isWIN
source $VIMRUNTIME/delmenu.vim
source $VIMRUNTIME/menu.vim
" language messages zh_CN.utf-8
endif


" 使用 GUI 界面时的设置
if g:isGUI
" 启动时自动最大化窗口
if g:isWIN
au GUIEnter * simalt ~x
endif
"winpos 20 20 " 指定窗口出现的位置,坐标原点在屏幕左上角
"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


" 加载 pathogen 插件管理器
execute pathogen#infect()
execute pathogen#helptags()


" 修正部分语言的关键字列表
au FileType perl set iskeyword=@,48-57,_,192-255
au FileType php,blade set iskeyword=@,48-57,_,192-255
au FileType ruby,eruby set iskeyword=@,48-57,_,192-255,?,!
au FileType css,scss,less set iskeyword=@,48-57,_,192-255,#
au FileType nginx set iskeyword=@,48-57,_,192-255


" 针对部分语言添加字典补全
au FileType c call AddCDict()
au FileType cpp call AddCPPDict()
au FileType rust call AddRustDict()
au FileType go call AddGoDict()
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 mysql call AddMySQLDict()

au FileType elixir,eelixir call AddElixirDict()
au FileType ruby,eruby call AddRubyDict()

au FileType html,gohtmltmpl,eelixir,blade,volt,*.twig,htmldjango,jinja,eruby,jst call AddHTMLDict()
au FileType smarty,mustache,handlebars,vue,jsx call AddHTMLDict()
au FileType css,scss,less call AddCSSDict()
au FileType javascript,coffee,typescript,ls call AddJavaScriptDict()

au FileType slim,pug call AddHTMLDict()
au FileType slim,pug call AddCSSDict()
au FileType slim,pug call AddJavaScriptDict()

au FileType Dockerfile call AddDockerfileDict()
au FileType docker-compose call AddDockerComposeDict()

function AddCDict()
if g:isWIN
set dict+=$VIM/vimfiles/dict/c.txt
else
set dict+=~/.vim/dict/c.txt
endif
set complete+=k
endfunction

function AddCPPDict()
if g:isWIN
set dict+=$VIM/vimfiles/dict/c.txt
set dict+=$VIM/vimfiles/dict/cpp.txt
else
set dict+=~/.vim/dict/c.txt
set dict+=~/.vim/dict/cpp.txt
endif
set complete+=k
endfunction

function AddRustDict()
if g:isWIN
set dict+=$VIM/vimfiles/dict/rust.txt
else
set dict+=~/.vim/dict/rust.txt
endif
set complete+=k
endfunction

function AddGoDict()
if g:isWIN
set dict+=$VIM/vimfiles/dict/go.txt
else
set dict+=~/.vim/dict/go.txt
endif
set complete+=k
endfunction

function AddJavaDict()
if g:isWIN
set dict+=$VIM/vimfiles/dict/java.txt
else
set dict+=~/.vim/dict/java.txt
endif
set complete+=k
endfunction

function AddElixirDict()
if g:isWIN
set dict+=$VIM/vimfiles/dict/elixir.txt
else
set dict+=~/.vim/dict/elixir.txt
endif
set complete+=k
endfunction

function AddLuaDict()
if g:isWIN
set dict+=$VIM/vimfiles/dict/lua.txt
set dict+=$VIM/vimfiles/dict/love2d.txt
else
set dict+=~/.vim/dict/lua.txt
set dict+=~/.vim/dict/love2d.txt
endif
set complete+=k
endfunction

function AddPerlDict()
if g:isWIN
set dict+=$VIM/vimfiles/dict/perl.txt
else
set dict+=~/.vim/dict/perl.txt
endif
set complete+=k
endfunction

function AddPHPDict()
if g:isWIN
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:isWIN
set dict+=$VIM/vimfiles/dict/ruby.txt
else
set dict+=~/.vim/dict/ruby.txt
endif
set complete+=k
endfunction

function AddMySQLDict()
if g:isWIN
set dict+=$VIM/vimfiles/dict/mysql.txt
else
set dict+=~/.vim/dict/mysql.txt
endif
set complete+=k
endfunction

function AddCSSDict()
if g:isWIN
set dict+=$VIM/vimfiles/dict/css.txt
else
set dict+=~/.vim/dict/css.txt
endif
set complete+=k
endfunction

function AddJavaScriptDict()
if g:isWIN
set dict+=$VIM/vimfiles/dict/javascript.txt
else
set dict+=~/.vim/dict/javascript.txt
endif
set complete+=k
endfunction

function AddHTMLDict()
if g:isWIN
set dict+=$VIM/vimfiles/dict/html.txt
else
set dict+=~/.vim/dict/html.txt
endif
set complete+=k
endfunction

function AddDockerfileDict()
if g:isWIN
set dict+=$VIM/vimfiles/dict/Dockerfile.txt
else
set dict+=~/.vim/dict/Dockerfile.txt
endif
set complete+=k
endfunction

function AddDockerComposeDict()
if g:isWIN
set dict+=$VIM/vimfiles/dict/docker-compose.txt
else
set dict+=~/.vim/dict/docker-compose.txt
endif
set complete+=k
endfunction


" 开启部分语法高亮的非默认特性

let g:go_template_autocreate = 0 " 关闭自动生成模版代码
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
let g:haskell_enable_pattern_synonyms = 1 " 高亮 Haskell pattern
let g:haskell_enable_typeroles = 1 " 高亮 Haskell type roles
let g:haskell_enable_static_pointers = 1 " 高亮 Haskell static

if has('python3')
command! -nargs=1 Py py3 <args>
if g:isMAC
set pythonthreedll=/usr/local/Frameworks/Python.framework/Versions/3.9/Python
set pythonthreehome=/usr/local/Frameworks/Python.framework/Versions/3.9
endif
else
command! -nargs=1 Py py <args>
if g:isMAC
set pythondll=/usr/local/Frameworks/Python.framework/Versions/2.7/Python
set pythonhome=/usr/local/Frameworks/Python.framework/Versions/2.7
endif
endif
let g:pymode_python = 'python3' " 使用 Python3 语法检查 [Python-Mode]
let g:pymode_options_colorcolumn = 0 " 关闭右侧的单行字符长度标尺
let g:pymode_virtualenv = 0 " 关闭 virtualenv 检测
let g:pymode_init = 0 " 关闭 init
let g:pymode_lint = 0 " 关闭 lint

" 高亮 JS/TS/Coffee/Dart 中模版字符串的内容 [js-pretty-template 插件]
autocmd FileType javascript JsPreTmpl
autocmd FileType typescript JsPreTmpl
autocmd FileType typescript syn clear foldBraces
autocmd FileType coffee JsPreTmpl
autocmd FileType dart JsPreTmpl

" tsuquyomi
let g:tsuquyomi_disable_quickfix = 1 " 禁用 tsuquyomi 的报错窗口,改用 syntastic 的

" 设置部分语言插件的特性
let g:smarty_left_delimiter = '{{' " 设置 Smarty 标签左界定符
let g:smarty_right_delimiter = '}}' " 设置 Smarty 标签右界定符

" BufExplorer 文件缓冲浏览器
let g:bufExplorerSortBy = 'name' " 按文件名排序

" TagBar tags 标签浏览器
let g:tagbar_sort = 0 " 关闭排序 [也就是按标签本身在文件中的位置排序]
let g:tagbar_show_linenumbers = -1 " 显示行号 [使用全局关于行号的默认配置]
let g:tagbar_autopreview = 0 " 关闭自动预览 [随着光标在标签上的移动,顶部会出现一个实时的预览窗口,需要时可以修改此处开启]

" snipMate Tab 智能补全
let g:snips_author = 'Ruchee'
let g:snipMate = {}
" 不使用插件自带的默认继承
let g:snipMate.no_default_aliases = 1
" 同名同描述补全开启覆盖,只取最后一个生效
let g:snipMate.override = 1
" 使用旧版解析器
let g:snipMate.snippet_version = 0
" 设置补全项之间的继承关系,比如 C语言继承 C++ 的补全
let g:snipMate.scope_aliases = {}
let g:snipMate.scope_aliases['c'] = 'cpp'
let g:snipMate.scope_aliases['objc'] = 'cpp,objc'
let g:snipMate.scope_aliases['gohtmltmpl'] = 'html,gohtmltmpl'
let g:snipMate.scope_aliases['racket'] = 'scheme,racket'
let g:snipMate.scope_aliases['javascript'] = 'js_*,javascript'
let g:snipMate.scope_aliases['typescript'] = 'javascript,typescript'
let g:snipMate.scope_aliases['javascript.jsx'] = 'javascript,jsx'
let g:snipMate.scope_aliases['elixir'] = 'elixir,phoenix'
let g:snipMate.scope_aliases['eelixir'] = 'html,eelixir'
let g:snipMate.scope_aliases['smarty'] = 'html,smarty'
let g:snipMate.scope_aliases['blade'] = 'html,blade'
let g:snipMate.scope_aliases['volt'] = 'html,volt'
let g:snipMate.scope_aliases['*.twig'] = 'html,twig'
let g:snipMate.scope_aliases['htmldjango'] = 'html,htmldjango'
let g:snipMate.scope_aliases['jinja'] = 'html,jinja'
let g:snipMate.scope_aliases['ruby'] = 'ruby,rails,rspec'
let g:snipMate.scope_aliases['eruby'] = 'html,eruby'
let g:snipMate.scope_aliases['slim'] = 'ruby,slim'
let g:snipMate.scope_aliases['jst'] = 'html,jst'
let g:snipMate.scope_aliases['mustache'] = 'html,mustache'
let g:snipMate.scope_aliases['handlebars'] = 'html,mustache'
let g:snipMate.scope_aliases['vue'] = 'html,vue'
let g:snipMate.scope_aliases['scss'] = 'css,scss'
let g:snipMate.scope_aliases['less'] = 'css,less'
let g:snipMate.scope_aliases['xhtml'] = 'html'
let g:snipMate.scope_aliases['html'] = 'tpl_*,html'
" For 微信小程序
let g:snipMate.scope_aliases['wxml'] = 'html,wxml'
let g:snipMate.scope_aliases['wxss'] = 'css,wxss'

" NERDTree 树形文件浏览器
let g:NERDTreeShowHidden = 1 " 显示隐藏文件 [NERDTree]
let g:NERDTreeGitStatusShowIgnored = 1 " 显示被忽略图标 [NERDTree-Git-Plugin]
let g:NERDTreeGitStatusIndicatorMapCustom = {
\ 'Modified' : '✹',
\ 'Staged' : '✚',
\ 'Untracked' : '✭',
\ 'Renamed' : '➜',
\ 'Unmerged' : '═',
\ 'Deleted' : '✖',
\ 'Dirty' : '✗',
\ 'Clean' : '✔︎',
\ 'Unknown' : '?'
\ } " 为 NERDTree-Git-Plugin 设定各个状态对应的符号

" NERD_commenter 注释处理插件
let NERDSpaceDelims = 1 " 自动添加前置空格

" eregex PCRE 风格的搜索
let g:eregex_forward_delim = '//' " 指定正向搜索按键
let g:eregex_backward_delim = '??' " 指定反向搜索按键

" ctrlp 文件搜索
let g:ctrlp_map = '<c-p>' " 指定触发按键
let g:ctrlp_cmd = 'CtrlP' " 指定默认触发的搜索模式
let g:ctrlp_use_caching = 0 " 不使用缓存
" 指定自定义的忽略文件列表
let g:ctrlp_custom_ignore = 'node_modules/\|vendor/\|git/\|svn/\|tmp/\|cache'
let g:ctrlp_user_command = {
\ 'types': {
\ 1: ['.git', 'cd %s && git ls-files -co --exclude-standard'],
\ },
\ 'fallback': 'find %s -type f',
\ 'ignore': 1
\ } " 特定项目使用 types 中指定的命令,非特定项目使用 fallback 中的命令,且启用自定义的忽略文件列表

" ctrlp-funky 函数搜索
let g:ctrlp_funky_matchtype = 'path' " 命中字符即时高亮
let g:ctrlp_funky_syntax_highlight = 1 " 开启语法高亮

" ack 单词搜索 需要安装 the_silver_searcher 配合使用
let g:ackprg = 'ag --nogroup --nocolor --column'

" indentLine 显示对齐线
let g:indentLine_enabled = 0 " 默认关闭
let g:indentLine_char_list = ['|', '¦', '┆', '┊'] " 设置对齐线字符,每个层级都可以不一样
let g:indentLine_color_term = 239 " 设置非 GUI 线条颜色
let g:indentLine_color_gui = '#A4E57E' " 设置 GUI 线条颜色

" AirLine 彩色状态栏
let g:airline_theme = 'badwolf' " 设置主题
let g:airline_powerline_fonts = 0 " 关闭自定义字体

" Promptline 终端辅助工具 此插件和 Vim 本身的使用没多大关系,将其生成的文件加载到 .bashrc,可达到美化终端的效果。比如说进入一个 Git 工程会自动显示当前分支情况
let g:promptline_powerline_symbols = 0 " 关闭特殊符号
let g:promptline_preset = {
\'a' : [ promptline#slices#host() ],
\'b' : [ promptline#slices#user(), '\t' ],
\'c' : [ promptline#slices#cwd() ],
\'y' : [ promptline#slices#vcs_branch(), promptline#slices#git_status() ],
\'warn' : [ promptline#slices#last_exit_code() ]
\} " 自定义命令行显示
let g:promptline_symbols = {
\ 'left' : '',
\ 'left_alt' : '>',
\ 'dir_sep' : ' / ',
\ 'truncation' : '...',
\ 'vcs_branch' : '',
\ 'space' : ' '
\} " 自定义符号

" GitGutter Git辅助插件
let g:gitgutter_enabled = 0 " 默认不开启
let g:gitgutter_signs = 0 " 默认不开启提示
let g:gitgutter_highlight_lines = 0 " 默认不高亮行
let g:gitgutter_sign_added = '+' " 自定义新增指示符
let g:gitgutter_sign_modified = '>' " 自定义修改指示符
let g:gitgutter_sign_removed = '-' " 自定义删除指示符
let g:gitgutter_sign_modified_removed = '->' " 自定义既修改又删除指示符

" Syntastic 语法检查
let g:syntastic_check_on_open = 1 " 默认开启
let g:syntastic_mode_map = { 'mode': 'active', 'passive_filetypes': ['html', 'xhtml'] }
" 自定义编译器和编译参数
if g:isWIN
let g:syntastic_c_compiler = 'gcc'
let g:syntastic_cpp_compiler = 'g++'
else
let g:syntastic_c_compiler = 'clang'
let g:syntastic_cpp_compiler = 'clang++'
endif
let g:syntastic_c_compiler_options = '-Wall -std=c11'
let g:syntastic_cpp_compiler_options = '-Wall -std=c++17'
let g:syntastic_swift_checkers = ['swift', 'swiftpm', 'swiftlint']
let g:syntastic_rust_checkers = ['rustc']
let g:syntastic_nim_checkers = ['nim']
let g:syntastic_enable_nim_checker = 1
let g:syntastic_crystal_checkers = ['crystal']
let g:syntastic_enable_crystal_checker = 1
let g:syntastic_kotlin_checkers = ['kotlinc']
let g:syntastic_enable_kotlin_checker = 1
let g:syntastic_elixir_checkers = ['elixir']
let g:syntastic_enable_elixir_checker = 1
let g:syntastic_perl_checkers = ['perl']
let g:syntastic_enable_perl_checker = 1
let g:syntastic_perl6_checkers = ['perl6']
let g:syntastic_enable_perl6_checker = 1
let g:syntastic_python_python_exec = 'python3'
let g:syntastic_eruby_ruby_quiet_messages = {'regex': 'possibly useless use of a variable in void context'}
let g:syntastic_javascript_checkers = ['eslint']
let g:syntastic_typescript_checkers = ['tsuquyomi']
let g:syntastic_elm_checkers = ['elm_make']
let g:syntastic_enable_racket_racket_checker = 1
" 自定义指定后缀的文件不开启语法检查
au BufRead,BufNewFile *.min.js exec ':SyntasticToggleMode'

" php-cs-fixer 格式化 PHP 代码
let g:php_cs_fixer_rules = '@PSR2' " 指定默认的格式化规则
let g:php_cs_fixer_php_path = 'php' " 指定 PHP 可执行文件的路径
let g:php_cs_fixer_config_file = $HOME.'/.php-cs-fixer.php' " 指定单独的 PHP-CS-Fixer 配置文件 [如果指定的配置文件存在,就会使用该配置]
let g:php_cs_fixer_enable_default_mapping = 1 " 使用插件默认的快捷键

" vim-ruby Ruby 代码补全
let g:rubycomplete_buffer_loading = 1
let g:rubycomplete_classes_in_global = 1
let g:rubycomplete_rails = 1
let g:rubycomplete_load_gemfile = 1

" javascript-libraries-syntax 指定需要高亮的JS库
let g:used_javascript_libs = 'jquery,underscore,handlebars,vue,react,d3'

" prettier 格式化代码 [主要针对前端代码文件] [需要安装 prettier,可在 HOME 目录放置一个名为 .prettierrc.js 的配置文件做更全面的配置]
let g:prettier#config#print_width = 100 " 单行最大字符数
let g:prettier#config#tab_width = 4 " 缩进空格的个数
let g:prettier#config#semi = 'true' " 语句末尾添加逗号


" ======= 自定义快捷键 ======= "

" Ctrl + ] 多选择跳转
nmap <c-]> g<c-]>
vmap <c-]> g<c-]>

" Ctrl + T 跳回原位置
nmap <c-t> :pop<cr>

" Ctrl + U 简化全能补全按键
imap <c-u> <c-x><c-o>

" Ctrl + H 光标移当前行行首[插入模式]、切换左窗口[Normal 模式]
imap <c-h> <esc>I
map <c-h> <c-w><c-h>

" Ctrl + J 光标移下一行行首[插入模式]、切换下窗口[Normal 模式]
imap <c-j> <esc><down>I
map <c-j> <c-w><c-j>

" Ctrl + K 光标移上一行行尾[插入模式]、切换上窗口[Normal 模式]
imap <c-k> <esc><up>A
map <c-k> <c-w><c-k>

" Ctrl + L 光标移当前行行尾[插入模式]、切换右窗口[Normal 模式]
imap <c-l> <esc>A
map <c-l> <c-w><c-l>

" \c 复制至公共剪贴板
vmap <leader>c "+y

" \a 复制所有至公共剪贴板
nmap <leader>a <esc>ggVG"+y<esc>

" \v 从公共剪贴板粘贴
imap <leader>v <esc>"+p
nmap <leader>v "+p
vmap <leader>v "+p

" \bb 按=号对齐代码 [Tabular 插件]
nmap <leader>bb :Tab /=<cr>

" \bn 自定义对齐 [Tabular 插件]
nmap <leader>bn :Tab /

" \nt 打开文件树窗口,在左侧栏显示 [NERDTree 插件]
nmap <leader>nt :NERDTree<cr>

" \ut 打开/关闭文档编辑历史窗口,在左侧栏显示 [Undotree 插件]
nmap <leader>ut :UndotreeToggle<cr>

" \il 显示/关闭对齐线 [indentLine 插件]
nmap <leader>il :IndentLinesToggle<cr>

" \tl 打开/关闭 Tags 窗口,在右侧栏显示 [Tagbar 插件]
nmap <leader>tl :TagbarToggle<cr><c-w><c-l>

" \fe 打开文件编码窗口,在右侧栏显示 [FencView 插件]
nmap <leader>fe :FencView<cr>

" \mp 生成 Promptline 脚本文件,用于个性化终端操作 [Promptline 插件]
nmap <leader>mp :!rm ~/backup/.promptline<cr><esc>:PromptlineSnapshot ~/backup/.promptline airline<cr>

" \gi 开启或关闭 GitGutter [GitGutter 插件]
nmap <leader>gi :GitGutterToggle<cr>:GitGutterSignsToggle<cr>:GitGutterLineHighlightsToggle<cr>

" \gd 打开 Git 文件对比模式 [GitGutter 插件]
nmap <leader>gd :Gdiff<cr>

" \gl 调用 Tig 查看提交日志 [tig-explorer 插件]
nmap <leader>gl :TigOpenCurrentFile<cr>

" \ss 搜索当前光标下的单词 [ack 插件]
nmap <leader>ss :Ack! '\b<c-r><c-w>\b'<cr>

" \ff 搜索当前文件中的类、方法、函数名 [ctrlp-funky 插件]
nmap <leader>ff :CtrlPFunky<cr>

" \fc 格式化当前文件的代码 [prettier 插件]
nmap <leader>fc :PrettierAsync<cr>

" \rb 一键去除全部尾部空白
imap <leader>rb <esc>:let _s=@/<bar>:%s/\s\+$//e<bar>:let @/=_s<bar>:nohl<cr>
nmap <leader>rb :let _s=@/<bar>:%s/\s\+$//e<bar>:let @/=_s<bar>:nohl<cr>
vmap <leader>rb <esc>:let _s=@/<bar>:%s/\s\+$//e<bar>:let @/=_s<bar>:nohl<cr>

" \rm 一键去除全部 ^M 字符
imap <leader>rm <esc>:%s/<c-v><c-m>//g<cr>
nmap <leader>rm :%s/<c-v><c-m>//g<cr>
vmap <leader>rm <esc>:%s/<c-v><c-m>//g<cr>

" \rt 一键替换全部 Tab 为空格
nmap <leader>rt <esc>:retab<cr>

" \ra 一键清理当前代码文件
nmap <leader>ra <esc>\rt<esc>\rb<esc>gg=G<esc>gg<esc>

" \th 一键生成与当前编辑文件同名的 HTML 文件 [不输出行号]
imap <leader>th <esc>:set nonumber<cr>:set norelativenumber<cr><esc>:TOhtml<cr><esc>:w %:r.html<cr><esc>:q<cr>:set number<cr>:set relativenumber<cr>
nmap <leader>th <esc>:set nonumber<cr>:set norelativenumber<cr><esc>:TOhtml<cr><esc>:w %:r.html<cr><esc>:q<cr>:set number<cr>:set relativenumber<cr>
vmap <leader>th <esc>:set nonumber<cr>:set norelativenumber<cr><esc>:TOhtml<cr><esc>:w %:r.html<cr><esc>:q<cr>:set number<cr>:set relativenumber<cr>

" \wa 一键编译所有 Vimwiki 源文件
imap <leader>wa <esc>\ww<esc>:VimwikiAll2HTML<cr>:qa<cr>
nmap <leader>wa <esc>\ww<esc>:VimwikiAll2HTML<cr>:qa<cr>
vmap <leader>wa <esc>\ww<esc>:VimwikiAll2HTML<cr>:qa<cr>

" \ev 编辑当前所使用的 Vim 配置文件
nmap <leader>ev <esc>:e $MYVIMRC<cr>

" \uu 向服务器上传文件 [sync 插件]
nmap <leader>uu <esc>:w<cr>:call SyncUploadFile()<cr>

" \dd 从服务器下载文件 [sync 插件]
nmap <leader>dd <esc>:w<cr>:call SyncDownloadFile()<cr>

" \ml 保留本分支的改动 [git mergetool -t vimdiff 时可用]
nmap <leader>ml :diffget LOCAL<cr>

" \mr 保留它分支的改动 [git mergetool -t vimdiff 时可用]
nmap <leader>mr :diffget REMOTE<cr>

" \mb 保留基分支的改动 [git mergetool -t vimdiff 时可用]
nmap <leader>mb :diffget BASE<cr>

" \mu 刷新比较结果 [git mergetool -t vimdiff 时可用]
nmap <leader>mu :diffupdate<cr>

" \php 一键切换到 PHP 语法高亮
imap <leader>php <esc>:se ft=php<cr>li
nmap <leader>php <esc>:se ft=php<cr>

" \ruby 一键切换到 Ruby 语法高亮
imap <leader>ruby <esc>:se ft=ruby<cr>li
nmap <leader>ruby <esc>:se ft=ruby<cr>

" \eruby 一键切换到 eRuby 语法高亮
imap <leader>eruby <esc>:se ft=eruby<cr>li
nmap <leader>eruby <esc>:se ft=eruby<cr>

" \cf 一键切换到 Coffee 语法高亮
imap <leader>cf <esc>:se ft=coffee<cr>li
nmap <leader>cf <esc>:se ft=coffee<cr>

" \ts 一键切换到 TypeScript 语法高亮
imap <leader>ts <esc>:se ft=typescript<cr>li
nmap <leader>ts <esc>:se ft=typescript<cr>

" \js 一键切换到 JavaScript 语法高亮
imap <leader>js <esc>:se ft=javascript<cr>li
nmap <leader>js <esc>:se ft=javascript<cr>

" \jsx 一键切换到 JSX 语法高亮
imap <leader>jsx <esc>:se ft=javascript.jsx<cr>li
nmap <leader>jsx <esc>:se ft=javascript.jsx<cr>

" \css 一键切换到 CSS 语法高亮
imap <leader>css <esc>:se ft=css<cr>li
nmap <leader>css <esc>:se ft=css<cr>

" \html 一键切换到 HTML 语法高亮
imap <leader>html <esc>:se ft=html<cr>li
nmap <leader>html <esc>:se ft=html<cr>


" ======= 编译 && 运行 ======= "

" 编译并运行
func! Compile_Run_Code()
exec 'w'
if &filetype == 'c'
if g:isWIN
exec '!gcc -Wall -std=c11 -o %:r %:t && %:r.exe'
else
exec '!clang -Wall -std=c11 -o %:r %:t && ./%:r'
endif
elseif &filetype == 'cpp'
if g:isWIN
exec '!g++ -Wall -std=c++17 -o %:r %:t && %:r.exe'
else
exec '!clang++ -Wall -std=c++17 -o %:r %:t && ./%:r'
endif
elseif &filetype == 'objc'
if g:isMAC
exec '!clang -fobjc-arc -framework Foundation %:t -o %:r && ./%:r'
endif
elseif &filetype == 'swift'
if g:isWIN
exec '!swiftc %:t && %:r.exe'
else
exec '!swiftc %:t && ./%:r'
endif
elseif &filetype == 'd'
if g:isWIN
exec '!dmd -wi %:t && del %:r.obj && %:r.exe'
else
exec '!dmd -wi %:t && rm %:r.o && ./%:r'
endif
elseif &filetype == 'rust'
if g:isWIN
exec '!rustc %:t && %:r.exe'
else
exec '!rustc %:t && ./%:r'
endif
elseif &filetype == 'go'
if g:isWIN
exec '!go build %:t && %:r.exe'
else
exec '!go build %:t && ./%:r'
endif
elseif &filetype == 'nim'
if g:isWIN
exec '!nim c %:t && %:r.exe'
else
exec '!nim c %:t && ./%:r'
endif
elseif &filetype == 'crystal'
if g:isWIN
exec '!crystal build %:t && %:r.exe'
else
exec '!crystal build %:t && ./%:r'
endif
elseif &filetype == 'vala'
if g:isWIN
exec '!valac %:t && %:r.exe'
else
exec '!valac %:t && ./%:r'
endif
elseif &filetype == 'java'
exec '!javac %:t && java %:r'
elseif &filetype == 'groovy'
exec '!groovy %:t'
elseif &filetype == 'kotlin'
exec '!kotlinc %:t -include-runtime -d %:r.jar && kotlin %:r.jar'
elseif &filetype == 'scala'
exec '!scala %:t'
elseif &filetype == 'clojure'
exec '!lein exec %:t'
elseif &filetype == 'cs'
if g:isWIN
exec '!csc %:t && %:r.exe'
else
exec '!mcs %:t && mono %:r.exe'
endif
elseif &filetype == 'fsharp'
if g:isWIN
exec '!fsc %:t && %:r.exe'
else
exec '!fsharpc %:t && mono %:r.exe'
endif
elseif &filetype == 'erlang'
exec '!escript %:t'
elseif &filetype == 'elixir'
exec '!elixir %:t'
elseif &filetype == 'lfe'
exec '!lfe %:t'
elseif &filetype == 'scheme'
exec '!chez %:t'
elseif &filetype == 'racket'
exec '!racket -fi %:t'
elseif &filetype == 'lisp'
exec '!sbcl --load %:t'
elseif &filetype == 'ocaml'
if g:isWIN
exec '!ocamlc -o %:r.exe %:t && %:r.exe'
else
exec '!ocamlc -o %:r %:t && ./%:r'
endif
elseif &filetype == 'haskell'
if g:isWIN
exec '!ghc -o %:r %:t && %:r.exe'
else
exec '!ghc -o %:r %:t && ./%:r'
endif
elseif &filetype == 'io'
exec '!io %:t'
elseif &filetype == 'lua'
exec '!lua %:t'
elseif &filetype == 'perl'
exec '!perl %:t'
elseif &filetype == 'perl6'
exec '!perl6 %:t'
elseif &filetype == 'raku'
exec '!raku %:t'
elseif &filetype == 'php'
exec '!php %:t'
elseif &filetype == 'python'
exec '!python3 %:t'
elseif &filetype == 'ruby'
exec '!ruby %:t'
elseif &filetype == 'julia'
exec '!julia %:t'
elseif &filetype == 'dart'
exec '!dart %:t'
elseif &filetype == 'elm'
exec '!elm make %:t'
elseif &filetype == 'haxe'
exec '!haxe -main %:r --interp'
elseif &filetype == 'javascript'
exec '!node %:t'
elseif &filetype == 'coffee'
exec '!coffee -c %:t && node %:r.js'
elseif &filetype == 'typescript'
exec '!tsc --module commonjs --target ES6 %:t && node %:r.js'
elseif &filetype == 'ls'
exec '!lsc -c %:t && node %:r.js'
elseif &filetype == 'r'
exec '!Rscript %:t'
elseif &filetype == 'sh'
exec '!bash %:t'
elseif &filetype == 'slim'
exec '!slimrb -ce %:t > %:r.html.erb'
elseif &filetype == 'scss'
exec '!scss %:t > %:r.css'
elseif &filetype == 'less'
exec '!lessc %:t > %:r.css'
elseif &filetype == 'solidity'
exec '!solc --bin %:t'
endif
endfunc

" \rr 一键保存、编译、运行
imap <leader>rr <esc>:call Compile_Run_Code()<cr>
nmap <leader>rr :call Compile_Run_Code()<cr>
vmap <leader>rr <esc>:call Compile_Run_Code()<cr>


" ======= Vimwiki ======= "

let g:vimwiki_w32_dir_enc = 'utf-8' " 设置编码
let g:vimwiki_use_mouse = 1 " 使用鼠标映射
" 声明可以在 wiki 里面使用的 HTML 标签
let g:vimwiki_valid_html_tags = 'p,a,b,i,s,u,br,hr,sub,sup,img,div,del,red,center,left,right,h1,h2,h3,h4,h5,h6,pre,code,script,style,span'

let blog = {}
if g:isWIN
let blog.path = 'D:/Ruchee/mysite/wiki/'
let blog.path_html = 'D:/Ruchee/mysite/html/'
let blog.template_path = 'D:/Ruchee/mysite/templates/'
else
let blog.path = '~/mysite/wiki/'
let blog.path_html = '~/mysite/html/'
let blog.template_path = '~/mysite/templates/'
endif
let blog.template_default = 'code'
let blog.template_ext = '.html'
let blog.auto_export = 1
let g:vimwiki_list = [blog]


" ======= 加载自定义工程配置文件 ======= "

if g:isWIN
if filereadable($VIM.'/_self.vim')
source $VIM/_self.vim
end
else
if filereadable($HOME.'/.self.vim')
source $HOME/.self.vim
end
end

set foldenable
"(这个是关闭折叠功能)
"set nofen

"关闭遇到错误时的声音提示"
"关闭错误信息响铃"
set noerrorbells

"关闭使用可视响铃代替呼叫"
set novisualbell

"用浅色高亮显示当前行"
autocmd InsertLeave * se nocul
autocmd InsertEnter * se cul

"设置语言编码"
set langmenu=zh_CN.UTF-8
set helplang=cn

" 显示还没有输入完整的命令.例如yy命令,输入第一个y会在右下角显示y.
set showcmd