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
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
|
" Vim support file to detect file types
"
" Maintainer: Adam Stankiewicz <sheerun@sher.pl>
" URL: https://github.com/sheerun/vim-polyglot
" Listen very carefully, I will say this only once
if exists("did_load_polyglot")
finish
endif
let did_load_polyglot = 1
" Line continuation is used here, remove 'C' from 'cpoptions'
let s:cpo_save = &cpo
set cpo&vim
" Disable all native vim ftdetect
if exists('g:polyglot_test')
autocmd!
endif
func! s:Observe(fn)
let b:polyglot_observe = a:fn
augroup polyglot-observer
au! CursorHold,CursorHoldI,BufWritePost <buffer>
\ execute('if polyglot#' . b:polyglot_observe . '() | au! polyglot-observer | endif')
augroup END
endfunc
let s:disabled_packages = {}
let s:new_polyglot_disabled = []
if exists('g:polyglot_disabled')
for pkg in g:polyglot_disabled
let base = split(pkg, '\.')
if len(base) > 0
let s:disabled_packages[pkg] = 1
call add(s:new_polyglot_disabled, base[0])
endif
endfor
else
let g:polyglot_disabled_not_set = 1
endif
function! s:SetDefault(name, value)
if !exists(a:name)
let {a:name} = a:value
endif
endfunction
call s:SetDefault('g:markdown_enable_spell_checking', 0)
call s:SetDefault('g:markdown_enable_input_abbreviations', 0)
call s:SetDefault('g:markdown_enable_mappings', 0)
" Enable jsx syntax by default
call s:SetDefault('g:jsx_ext_required', 0)
" Needed for sql highlighting
call s:SetDefault('g:javascript_sql_dialect', 'sql')
" Make csv loading faster
call s:SetDefault('g:csv_start', 1)
call s:SetDefault('g:csv_end', 2)
" Disable json concealing by default
call s:SetDefault('g:vim_json_syntax_conceal', 0)
call s:SetDefault('g:filetype_euphoria', 'elixir')
if !exists('g:python_highlight_all')
call s:SetDefault('g:python_highlight_builtins', 1)
call s:SetDefault('g:python_highlight_builtin_objs', 1)
call s:SetDefault('g:python_highlight_builtin_types', 1)
call s:SetDefault('g:python_highlight_builtin_funcs', 1)
call s:SetDefault('g:python_highlight_builtin_funcs_kwarg', 1)
call s:SetDefault('g:python_highlight_exceptions', 1)
call s:SetDefault('g:python_highlight_string_formatting', 1)
call s:SetDefault('g:python_highlight_string_format', 1)
call s:SetDefault('g:python_highlight_string_templates', 1)
call s:SetDefault('g:python_highlight_indent_errors', 1)
call s:SetDefault('g:python_highlight_space_errors', 1)
call s:SetDefault('g:python_highlight_doctests', 1)
call s:SetDefault('g:python_highlight_func_calls', 1)
call s:SetDefault('g:python_highlight_class_vars', 1)
call s:SetDefault('g:python_highlight_operators', 1)
call s:SetDefault('g:python_highlight_file_headers_as_comments', 1)
call s:SetDefault('g:python_slow_sync', 1)
endif
" We need it because scripts.vim in vim uses "set ft=" which cannot be
" overridden with setf (and we can't use set ft= so our scripts.vim work)
func! s:Setf(ft)
if &filetype !~# '\<'.a:ft.'\>'
let &filetype = a:ft
endif
endfunc
" Function used for patterns that end in a star: don't set the filetype if the
" file name matches ft_ignore_pat.
" When using this, the entry should probably be further down below with the
" other StarSetf() calls.
func! s:StarSetf(ft)
if expand("<amatch>") !~ g:ft_ignore_pat && &filetype !~# '\<'.a:ft.'\>'
let &filetype = a:ft
endif
endfunc
augroup filetypedetect
" DO NOT EDIT CODE BELOW, IT IS GENERATED WITH MAKEFILE
if !has_key(s:disabled_packages, '8th')
au BufNewFile,BufRead *.8th set ft=8th
endif
if !has_key(s:disabled_packages, 'conf')
au BufNewFile,BufRead *.conf,auto.master,config set ft=conf
endif
if !has_key(s:disabled_packages, 'haproxy')
au BufNewFile,BufRead *.cfg,haproxy.cfg set ft=haproxy
au BufNewFile,BufRead haproxy*.conf* call s:StarSetf('haproxy')
endif
if !has_key(s:disabled_packages, 'a2ps')
au BufNewFile,BufRead */etc/a2ps.cfg,*/etc/a2ps/*.cfg,{.,}a2psrc,a2psrc set ft=a2ps
endif
if !has_key(s:disabled_packages, 'a65')
au BufNewFile,BufRead *.a65 set ft=a65
endif
if !has_key(s:disabled_packages, 'aap')
au BufNewFile,BufRead *.aap set ft=aap
endif
if !has_key(s:disabled_packages, 'abap')
au BufNewFile,BufRead *.abap set ft=abap
endif
if !has_key(s:disabled_packages, 'abaqus')
au! BufNewFile,BufRead *.inp call polyglot#detect#Inp()
endif
if !has_key(s:disabled_packages, 'abc')
au BufNewFile,BufRead *.abc set ft=abc
endif
if !has_key(s:disabled_packages, 'abel')
au BufNewFile,BufRead *.abl set ft=abel
endif
if !has_key(s:disabled_packages, 'acedb')
au BufNewFile,BufRead *.wrm set ft=acedb
endif
if !has_key(s:disabled_packages, 'acpiasl')
au BufNewFile,BufRead *.asl,*.dsl set ft=asl
endif
if !has_key(s:disabled_packages, 'ada')
au BufNewFile,BufRead *.ada,*.ada_m,*.adb,*.adc,*.ads,*.gpr set ft=ada
endif
if !has_key(s:disabled_packages, 'ahdl')
au BufNewFile,BufRead *.tdf set ft=ahdl
endif
if !has_key(s:disabled_packages, 'aidl')
au BufNewFile,BufRead *.aidl set ft=aidl
endif
if !has_key(s:disabled_packages, 'alsaconf')
au BufNewFile,BufRead */etc/asound.conf,*/usr/share/alsa/alsa.conf,{.,}asoundrc set ft=alsaconf
endif
if !has_key(s:disabled_packages, 'aml')
au BufNewFile,BufRead *.aml set ft=aml
endif
if !has_key(s:disabled_packages, 'ampl')
au BufNewFile,BufRead *.run set ft=ampl
endif
if !has_key(s:disabled_packages, 'csv')
au BufNewFile,BufRead *.csv,*.tab,*.tsv set ft=csv
endif
if !has_key(s:disabled_packages, 'xml')
au BufNewFile,BufRead *.adml,*.admx,*.ant,*.axml,*.builds,*.ccproj,*.ccxml,*.cdxml,*.clixml,*.cproject,*.cscfg,*.csdef,*.csl,*.csproj,*.csproj.user,*.ct,*.depproj,*.dita,*.ditamap,*.ditaval,*.dll.config,*.dotsettings,*.filters,*.fsproj,*.fxml,*.glade,*.gml,*.gmx,*.grxml,*.gst,*.iml,*.ivy,*.jelly,*.jsproj,*.kml,*.launch,*.mdpolicy,*.mjml,*.mm,*.mod,*.mxml,*.natvis,*.ncl,*.ndproj,*.nproj,*.nuspec,*.odd,*.osm,*.pkgproj,*.pluginspec,*.proj,*.props,*.psc1,*.pt,*.rdf,*.resx,*.rss,*.sch,*.scxml,*.sfproj,*.shproj,*.srdf,*.storyboard,*.sublime-snippet,*.targets,*.tml,*.tpm,*.ui,*.urdf,*.ux,*.vbproj,*.vcxproj,*.vsixmanifest,*.vssettings,*.vstemplate,*.vxml,*.wixproj,*.workflow,*.wpl,*.wsdl,*.wsf,*.wxi,*.wxl,*.wxs,*.x3d,*.xacro,*.xaml,*.xib,*.xlf,*.xliff,*.xmi,*.xml,*.xml.dist,*.xproj,*.xsd,*.xspec,*.xul,*.zcml,*/etc/blkid.tab,*/etc/blkid.tab.old,*/etc/xdg/menus/*.menu,*fglrxrc,{.,}classpath,{.,}cproject,{.,}project,App.config,NuGet.config,Settings.StyleCop,Web.Debug.config,Web.Release.config,Web.config,packages.config set ft=xml
endif
if !has_key(s:disabled_packages, 'ant')
au BufNewFile,BufRead build.xml set ft=ant
endif
if !has_key(s:disabled_packages, 'apache')
au BufNewFile,BufRead */etc/apache2/sites-*/*.com,*/etc/httpd/*.conf,{.,}htaccess set ft=apache
au BufNewFile,BufRead srm.conf* call s:StarSetf('apache')
au BufNewFile,BufRead httpd.conf* call s:StarSetf('apache')
au BufNewFile,BufRead apache2.conf* call s:StarSetf('apache')
au BufNewFile,BufRead apache.conf* call s:StarSetf('apache')
au BufNewFile,BufRead access.conf* call s:StarSetf('apache')
au BufNewFile,BufRead */etc/httpd/conf.d/*.conf* call s:StarSetf('apache')
au BufNewFile,BufRead */etc/apache2/sites-*/* call s:StarSetf('apache')
au BufNewFile,BufRead */etc/apache2/mods-*/* call s:StarSetf('apache')
au BufNewFile,BufRead */etc/apache2/conf.*/* call s:StarSetf('apache')
au BufNewFile,BufRead */etc/apache2/*.conf* call s:StarSetf('apache')
endif
if !has_key(s:disabled_packages, 'apiblueprint')
au BufNewFile,BufRead *.apib set ft=apiblueprint
endif
if !has_key(s:disabled_packages, 'applescript')
au BufNewFile,BufRead *.applescript,*.scpt set ft=applescript
endif
if !has_key(s:disabled_packages, 'aptconf')
au BufNewFile,BufRead */.aptitude/config,*/etc/apt/apt.conf.d/*.conf,apt.conf set ft=aptconf
au BufNewFile,BufRead */etc/apt/apt.conf.d/[^.]* call s:StarSetf('aptconf')
endif
if !has_key(s:disabled_packages, 'arch')
au BufNewFile,BufRead {.,}arch-inventory,=tagging-method set ft=arch
endif
if !has_key(s:disabled_packages, 'c/c++')
au! BufNewFile,BufRead *.h call polyglot#detect#H()
au BufNewFile,BufRead *.c,*.cats,*.idc,*.qc,*enlightenment/*.cfg set ft=c
au BufNewFile,BufRead *.c++,*.cc,*.cp,*.cpp,*.cxx,*.h++,*.hh,*.hpp,*.hxx,*.inc,*.inl,*.ipp,*.moc,*.tcc,*.tlh,*.tpp set ft=cpp
endif
if !has_key(s:disabled_packages, 'arduino')
au BufNewFile,BufRead *.ino,*.pde set ft=arduino
endif
if !has_key(s:disabled_packages, 'art')
au BufNewFile,BufRead *.art set ft=art
endif
if !has_key(s:disabled_packages, 'asciidoc')
au BufNewFile,BufRead *.adoc,*.asc,*.asciidoc set ft=asciidoc
endif
if !has_key(s:disabled_packages, 'autohotkey')
au BufNewFile,BufRead *.ahk,*.ahkl set ft=autohotkey
endif
if !has_key(s:disabled_packages, 'elf')
au BufNewFile,BufRead *.am set ft=elf
endif
if !has_key(s:disabled_packages, 'automake')
au BufNewFile,BufRead GNUmakefile.am,[Mm]akefile.am set ft=automake
endif
if !has_key(s:disabled_packages, 'asn')
au BufNewFile,BufRead *.asn,*.asn1 set ft=asn
endif
if !has_key(s:disabled_packages, 'aspvbs')
au! BufNewFile,BufRead *.asp call polyglot#detect#Asp()
au! BufNewFile,BufRead *.asa call polyglot#detect#Asa()
endif
if !has_key(s:disabled_packages, 'aspperl')
au! BufNewFile,BufRead *.asp call polyglot#detect#Asp()
endif
if !has_key(s:disabled_packages, 'atlas')
au BufNewFile,BufRead *.as,*.atl set ft=atlas
endif
if !has_key(s:disabled_packages, 'autoit')
au BufNewFile,BufRead *.au3 set ft=autoit
endif
if !has_key(s:disabled_packages, 'ave')
au BufNewFile,BufRead *.ave set ft=ave
endif
if !has_key(s:disabled_packages, 'awk')
au BufNewFile,BufRead *.awk,*.gawk set ft=awk
endif
if !has_key(s:disabled_packages, 'caddyfile')
au BufNewFile,BufRead Caddyfile set ft=caddyfile
endif
if !has_key(s:disabled_packages, 'cpp-modern')
endif
if !has_key(s:disabled_packages, 'carp')
au BufNewFile,BufRead *.carp set ft=carp
endif
if !has_key(s:disabled_packages, 'clojure')
au BufNewFile,BufRead *.boot,*.cl2,*.clj,*.cljc,*.cljs,*.cljs.hl,*.cljscm,*.cljx,*.edn,*.hic,build.boot,profile.boot,riemann.config set ft=clojure
endif
if !has_key(s:disabled_packages, 'cmake')
au BufNewFile,BufRead *.cmake,*.cmake.in,CMakeLists.txt set ft=cmake
endif
if !has_key(s:disabled_packages, 'coffee-script')
au BufNewFile,BufRead *.coffee.md,*.litcoffee set ft=litcoffee
au BufNewFile,BufRead *._coffee,*.cake,*.cjsx,*.coffee,*.coffeekup,*.iced,Cakefile set ft=coffee
endif
if !has_key(s:disabled_packages, 'cjsx')
endif
if !has_key(s:disabled_packages, 'cryptol')
au BufNewFile,BufRead *.cry,*.cyl,*.lcry,*.lcyl set ft=cryptol
endif
if !has_key(s:disabled_packages, 'crystal')
au BufNewFile,BufRead *.ecr set ft=ecrystal
au BufNewFile,BufRead *.cr,Projectfile set ft=crystal
endif
if !has_key(s:disabled_packages, 'cucumber')
au BufNewFile,BufRead *.feature,*.story set ft=cucumber
endif
if !has_key(s:disabled_packages, 'cue')
au BufNewFile,BufRead *.cue set ft=cuesheet
endif
if !has_key(s:disabled_packages, 'dart')
au BufNewFile,BufRead *.dart,*.drt set ft=dart
endif
if !has_key(s:disabled_packages, 'dhall')
au BufNewFile,BufRead *.dhall set ft=dhall
endif
if !has_key(s:disabled_packages, 'dlang')
au BufNewFile,BufRead *.sdl set ft=dsdl
au BufNewFile,BufRead *.ddoc set ft=ddoc
au BufNewFile,BufRead *.dd set ft=dd
au BufNewFile,BufRead *.lst set ft=dcov
au BufNewFile,BufRead *.d,*.di set ft=d
endif
if !has_key(s:disabled_packages, 'yaml')
au BufNewFile,BufRead *.mir,*.reek,*.rviz,*.sublime-syntax,*.syntax,*.yaml,*.yaml-tmlanguage,*.yaml.sed,*.yml,*.yml.mysql,{.,}clang-format,{.,}clang-tidy,{.,}gemrc,fish_history,fish_read_history,glide.lock,yarn.lock set ft=yaml
endif
if !has_key(s:disabled_packages, 'dockerfile')
au BufNewFile,BufRead docker-compose*.yaml,docker-compose*.yml set ft=yaml.docker-compose
au BufNewFile,BufRead *.Dockerfile,*.dock,*.dockerfile,Dockerfile,dockerfile set ft=Dockerfile
au BufNewFile,BufRead Dockerfile* call s:StarSetf('Dockerfile')
endif
if !has_key(s:disabled_packages, 'elixir')
au BufNewFile,BufRead *.eex,*.leex set ft=eelixir
au BufNewFile,BufRead *.ex,*.exs,mix.lock set ft=elixir
endif
if !has_key(s:disabled_packages, 'elm')
au BufNewFile,BufRead *.elm set ft=elm
endif
if !has_key(s:disabled_packages, 'emberscript')
au BufNewFile,BufRead *.em,*.emberscript set ft=ember-script
endif
if !has_key(s:disabled_packages, 'emblem')
au BufNewFile,BufRead *.em,*.emblem set ft=emblem
endif
if !has_key(s:disabled_packages, 'erlang')
au BufNewFile,BufRead *.app,*.app.src,*.erl,*.es,*.escript,*.hrl,*.xrl,*.yaws,*.yrl,Emakefile,rebar.config,rebar.config.lock,rebar.lock set ft=erlang
endif
if !has_key(s:disabled_packages, 'fennel')
au BufNewFile,BufRead *.fnl set ft=fennel
endif
if !has_key(s:disabled_packages, 'ferm')
au BufNewFile,BufRead *.ferm,ferm.conf set ft=ferm
endif
if !has_key(s:disabled_packages, 'fish')
au BufNewFile,BufRead *.fish set ft=fish
endif
if !has_key(s:disabled_packages, 'flatbuffers')
au BufNewFile,BufRead *.fbs set ft=fbs
endif
if !has_key(s:disabled_packages, 'forth')
au! BufNewFile,BufRead *.fs call polyglot#detect#Fs()
au BufNewFile,BufRead *.ft,*.fth set ft=forth
endif
if !has_key(s:disabled_packages, 'fsharp')
au! BufNewFile,BufRead *.fs call polyglot#detect#Fs()
au BufNewFile,BufRead *.fsi,*.fsx set ft=fsharp
endif
if !has_key(s:disabled_packages, 'gdscript')
au BufNewFile,BufRead *.gd set ft=gdscript3
endif
if !has_key(s:disabled_packages, 'git')
au BufNewFile,BufRead COMMIT_EDITMSG,MERGE_MSG,TAG_EDITMSG set ft=gitcommit
au BufNewFile,BufRead {.,}gitsendemail.* call s:StarSetf('gitsendemail')
au BufNewFile,BufRead git-rebase-todo set ft=gitrebase
au BufNewFile,BufRead *.gitconfig,*.git/config,*.git/modules/*/config,*/.config/git/config,*/git/config,{.,}gitconfig,{.,}gitmodules set ft=gitconfig
au BufNewFile,BufRead */{.,}gitconfig.d/* call s:StarSetf('gitconfig')
endif
if !has_key(s:disabled_packages, 'glsl')
au! BufNewFile,BufRead *.fs call polyglot#detect#Fs()
au BufNewFile,BufRead *.comp,*.fp,*.frag,*.frg,*.fsh,*.fshader,*.geo,*.geom,*.glsl,*.glslf,*.glslv,*.gs,*.gshader,*.shader,*.tesc,*.tese,*.vert,*.vrx,*.vsh,*.vshader set ft=glsl
endif
if !has_key(s:disabled_packages, 'gmpl')
au BufNewFile,BufRead *.mod set ft=gmpl
endif
if !has_key(s:disabled_packages, 'gnuplot')
au BufNewFile,BufRead *.gnu,*.gnuplot,*.gp,*.gpi,*.p,*.plot,*.plt set ft=gnuplot
endif
if !has_key(s:disabled_packages, 'go')
au BufNewFile,BufRead *.tmpl set ft=gohtmltmpl
au BufNewFile,BufRead go.mod set ft=gomod
au BufNewFile,BufRead *.go set ft=go
endif
if !has_key(s:disabled_packages, 'javascript')
au BufNewFile,BufRead *.flow set ft=flow
au BufNewFile,BufRead *._js,*.bones,*.cjs,*.es,*.es6,*.frag,*.gs,*.jake,*.javascript,*.js,*.jsb,*.jscad,*.jsfl,*.jsm,*.jss,*.mjs,*.njs,*.pac,*.sjs,*.ssjs,*.xsjs,*.xsjslib,Jakefile set ft=javascript
endif
if !has_key(s:disabled_packages, 'jsx')
au BufNewFile,BufRead *.jsx set ft=javascriptreact
endif
if !has_key(s:disabled_packages, 'graphql')
au BufNewFile,BufRead *.gql,*.graphql,*.graphqls set ft=graphql
endif
if !has_key(s:disabled_packages, 'groovy')
au BufNewFile,BufRead *.gradle,*.groovy,*.grt,*.gtpl,*.gvy,Jenkinsfile set ft=groovy
endif
if !has_key(s:disabled_packages, 'gradle')
endif
if !has_key(s:disabled_packages, 'grub')
au BufNewFile,BufRead */boot/grub/grub.conf,*/boot/grub/menu.lst,*/etc/grub.conf set ft=grub
endif
if !has_key(s:disabled_packages, 'haml')
au BufNewFile,BufRead *.haml,*.haml.deface,*.hamlbars,*.hamlc set ft=haml
endif
if !has_key(s:disabled_packages, 'handlebars')
au BufNewFile,BufRead *.handlebars,*.hb,*.hbs,*.hdbs set ft=html.handlebars
au BufNewFile,BufRead *.hjs,*.hogan,*.hulk,*.mustache set ft=html.mustache
endif
if !has_key(s:disabled_packages, 'haskell')
au BufNewFile,BufRead *.bpk,*.hs,*.hs-boot,*.hsc,*.hsig set ft=haskell
endif
if !has_key(s:disabled_packages, 'haxe')
au BufNewFile,BufRead *.hx,*.hxsl set ft=haxe
endif
if !has_key(s:disabled_packages, 'hcl')
au BufNewFile,BufRead *.hcl,*.nomad,*.workflow,Appfile set ft=hcl
endif
if !has_key(s:disabled_packages, 'hive')
au BufNewFile,BufRead *.hql,*.q,*.ql set ft=hive
endif
if !has_key(s:disabled_packages, 'html5')
au! BufNewFile,BufRead *.html call polyglot#detect#Html()
au BufNewFile,BufRead *.htm,*.html.hl,*.inc,*.st,*.xht,*.xhtml set ft=html
endif
if !has_key(s:disabled_packages, 'i3')
au BufNewFile,BufRead *.i3.config,*.i3config,{.,}i3.config,{.,}i3config,i3.config,i3config set ft=i3config
endif
if !has_key(s:disabled_packages, 'icalendar')
au BufNewFile,BufRead *.ics set ft=icalendar
endif
if !has_key(s:disabled_packages, 'idris')
au! BufNewFile,BufRead *.lidr call polyglot#detect#Lidr()
au! BufNewFile,BufRead *.idr call polyglot#detect#Idr()
au BufNewFile,BufRead idris-response set ft=idris
endif
if !has_key(s:disabled_packages, 'idris2')
au! BufNewFile,BufRead *.lidr call polyglot#detect#Lidr()
au! BufNewFile,BufRead *.idr call polyglot#detect#Idr()
au BufNewFile,BufRead *.ipkg,idris-response set ft=idris2
endif
if !has_key(s:disabled_packages, 'ion')
au BufNewFile,BufRead *.ion,~/.config/ion/initrc set ft=ion
endif
if !has_key(s:disabled_packages, 'javascript-sql')
endif
if !has_key(s:disabled_packages, 'jenkins')
au BufNewFile,BufRead *.Jenkinsfile,*.jenkinsfile,Jenkinsfile set ft=Jenkinsfile
au BufNewFile,BufRead Jenkinsfile* call s:StarSetf('Jenkinsfile')
endif
if !has_key(s:disabled_packages, 'htmldjango')
au BufNewFile,BufRead *.j2,*.jinja,*.jinja2,*.njk set ft=htmldjango
endif
if !has_key(s:disabled_packages, 'jq')
au BufNewFile,BufRead *.jq,{.,}jqrc set ft=jq
au BufNewFile,BufRead {.,}jqrc* call s:StarSetf('jq')
endif
if !has_key(s:disabled_packages, 'json5')
au BufNewFile,BufRead *.json5 set ft=json5
endif
if !has_key(s:disabled_packages, 'json')
au BufNewFile,BufRead *.JSON-tmLanguage,*.avsc,*.geojson,*.gltf,*.har,*.ice,*.json,*.jsonl,*.jsonp,*.mcmeta,*.template,*.tfstate,*.tfstate.backup,*.topojson,*.webapp,*.webmanifest,*.yy,*.yyp,{.,}arcconfig,{.,}htmlhintrc,{.,}tern-config,{.,}tern-project,{.,}watchmanconfig,Pipfile.lock,composer.lock,mcmod.info set ft=json
endif
if !has_key(s:disabled_packages, 'jsonnet')
au BufNewFile,BufRead *.jsonnet,*.libsonnet set ft=jsonnet
endif
if !has_key(s:disabled_packages, 'jst')
au BufNewFile,BufRead *.ect,*.ejs,*.jst set ft=jst
endif
if !has_key(s:disabled_packages, 'julia')
au BufNewFile,BufRead *.jl set ft=julia
endif
if !has_key(s:disabled_packages, 'kotlin')
au BufNewFile,BufRead *.kt,*.ktm,*.kts set ft=kotlin
endif
if !has_key(s:disabled_packages, 'ledger')
au BufNewFile,BufRead *.journal,*.ldg,*.ledger set ft=ledger
endif
if !has_key(s:disabled_packages, 'less')
au BufNewFile,BufRead *.less set ft=less
endif
if !has_key(s:disabled_packages, 'lilypond')
au BufNewFile,BufRead *.ily,*.ly set ft=lilypond
endif
if !has_key(s:disabled_packages, 'livescript')
au BufNewFile,BufRead *._ls,*.ls,Slakefile set ft=livescript
endif
if !has_key(s:disabled_packages, 'llvm')
au BufNewFile,BufRead *.td set ft=tablegen
au BufNewFile,BufRead *.ll set ft=llvm
endif
if !has_key(s:disabled_packages, 'log')
au BufNewFile,BufRead *.LOG,*.log,*_LOG,*_log set ft=log
endif
if !has_key(s:disabled_packages, 'lua')
au BufNewFile,BufRead *.fcgi,*.lua,*.nse,*.p8,*.pd_lua,*.rbxs,*.rockspec,*.wlua,{.,}luacheckrc set ft=lua
endif
if !has_key(s:disabled_packages, 'm4')
au BufNewFile,BufRead *.at,*.m4 set ft=m4
endif
if !has_key(s:disabled_packages, 'mako')
au BufNewFile,BufRead *.mako,*.mao set ft=mako
au BufReadPre *.*.mao execute "do BufRead filetypedetect " . expand("<afile>:r") | let b:mako_outer_lang = &filetype
au BufNewFile *.*.mao execute "do BufNewFile filetypedetect " . expand("<afile>:r") | let b:mako_outer_lang = &filetype
au BufReadPre *.*.mako execute "do BufRead filetypedetect " . expand("<afile>:r") | let b:mako_outer_lang = &filetype
au BufNewFile *.*.mako execute "do BufNewFile filetypedetect " . expand("<afile>:r") | let b:mako_outer_lang = &filetype
endif
if !has_key(s:disabled_packages, 'mathematica')
au! BufNewFile,BufRead *.m call polyglot#detect#M()
au BufNewFile,BufRead *.cdf,*.ma,*.mathematica,*.mma,*.mt,*.nb,*.nbp,*.wl,*.wls,*.wlt set ft=mma
endif
if !has_key(s:disabled_packages, 'markdown')
au BufNewFile,BufRead *.markdown,*.md,*.mdown,*.mdwn,*.mkd,*.mkdn,*.mkdown,*.ronn,*.workbook,contents.lr set ft=markdown
endif
if !has_key(s:disabled_packages, 'mdx')
au BufNewFile,BufRead *.mdx set ft=markdown.mdx
endif
if !has_key(s:disabled_packages, 'meson')
au BufNewFile,BufRead *.wrap set ft=dosini
au BufNewFile,BufRead meson.build,meson_options.txt set ft=meson
endif
if !has_key(s:disabled_packages, 'moonscript')
au BufNewFile,BufRead *.moon set ft=moon
endif
if !has_key(s:disabled_packages, 'murphi')
au! BufNewFile,BufRead *.m call polyglot#detect#M()
endif
if !has_key(s:disabled_packages, 'nginx')
au BufNewFile,BufRead *.nginx,*.nginxconf,*.vhost,*/nginx/*.conf,*nginx.conf,nginx*.conf,nginx.conf set ft=nginx
au BufNewFile,BufRead */usr/local/nginx/conf/* call s:StarSetf('nginx')
au BufNewFile,BufRead */etc/nginx/* call s:StarSetf('nginx')
endif
if !has_key(s:disabled_packages, 'nim')
au BufNewFile,BufRead *.nim,*.nim.cfg,*.nimble,*.nimrod,*.nims,nim.cfg set ft=nim
endif
if !has_key(s:disabled_packages, 'nix')
au BufNewFile,BufRead *.nix set ft=nix
endif
if !has_key(s:disabled_packages, 'objc')
au! BufNewFile,BufRead *.m call polyglot#detect#M()
au! BufNewFile,BufRead *.h call polyglot#detect#H()
endif
if !has_key(s:disabled_packages, 'ocaml')
au BufNewFile,BufRead *.sexp set ft=sexplib
au BufNewFile,BufRead *.root set ft=ocpbuildroot
au BufNewFile,BufRead *.ocp set ft=ocpbuild
au BufNewFile,BufRead _tags set ft=ocamlbuild_tags
au BufNewFile,BufRead dune,dune-project,dune-workspace,jbuild set ft=dune
au BufNewFile,BufRead _oasis set ft=oasis
au BufNewFile,BufRead *.opam,*.opam.template,opam set ft=opam
au BufNewFile,BufRead *.om,OMakefile,OMakeroot,OMakeroot.in set ft=omake
au BufNewFile,BufRead *.eliom,*.eliomi,*.ml,*.ml.cppo,*.ml4,*.mli,*.mli.cppo,*.mlip,*.mll,*.mlp,*.mlt,*.mly,{.,}ocamlinit set ft=ocaml
endif
if !has_key(s:disabled_packages, 'octave')
au! BufNewFile,BufRead *.m call polyglot#detect#M()
au BufNewFile,BufRead *.oct set ft=octave
endif
if !has_key(s:disabled_packages, 'opencl')
au BufNewFile,BufRead *.cl,*.opencl set ft=opencl
endif
if !has_key(s:disabled_packages, 'perl')
au! BufNewFile,BufRead *.tt2 call polyglot#detect#Tt2()
au! BufNewFile,BufRead *.t call polyglot#detect#T()
au! BufNewFile,BufRead *.pm call polyglot#detect#Pm()
au! BufNewFile,BufRead *.pl call polyglot#detect#Pl()
au BufNewFile,BufRead *.xs set ft=xs
au BufNewFile,BufRead *.comp,*.mason,*.mhtml set ft=mason
au BufNewFile,BufRead *.pod set ft=pod
au BufNewFile,BufRead *.al,*.cgi,*.fcgi,*.perl,*.ph,*.plx,*.psgi,{.,}gitolite.rc,Makefile.PL,Rexfile,ack,cpanfile,example.gitolite.rc set ft=perl
endif
if !has_key(s:disabled_packages, 'pgsql')
au BufNewFile,BufRead *.pgsql let b:sql_type_override='pgsql' | set ft=sql
endif
if !has_key(s:disabled_packages, 'cql')
au BufNewFile,BufRead *.cql set ft=cql
endif
if !has_key(s:disabled_packages, 'php')
au BufNewFile,BufRead *.aw,*.ctp,*.fcgi,*.inc,*.php,*.php3,*.php4,*.php5,*.phps,*.phpt,*.phtml,{.,}php,{.,}php_cs,{.,}php_cs.dist,Phakefile set ft=php
endif
if !has_key(s:disabled_packages, 'blade')
au BufNewFile,BufRead *.blade,*.blade.php set ft=blade
endif
if !has_key(s:disabled_packages, 'plantuml')
au BufNewFile,BufRead *.iuml,*.plantuml,*.pu,*.puml,*.uml set ft=plantuml
endif
if !has_key(s:disabled_packages, 'pony')
au BufNewFile,BufRead *.pony set ft=pony
endif
if !has_key(s:disabled_packages, 'powershell')
au BufNewFile,BufRead *.ps1xml set ft=ps1xml
au BufNewFile,BufRead *.ps1,*.psd1,*.psm1,*.pssc set ft=ps1
endif
if !has_key(s:disabled_packages, 'protobuf')
au BufNewFile,BufRead *.proto set ft=proto
endif
if !has_key(s:disabled_packages, 'pug')
au BufNewFile,BufRead *.jade,*.pug set ft=pug
endif
if !has_key(s:disabled_packages, 'puppet')
au BufNewFile,BufRead *.epp set ft=embeddedpuppet
au BufNewFile,BufRead *.pp,Modulefile set ft=puppet
endif
if !has_key(s:disabled_packages, 'purescript')
au BufNewFile,BufRead *.purs set ft=purescript
endif
if !has_key(s:disabled_packages, 'python')
au BufNewFile,BufRead *.cgi,*.fcgi,*.gyp,*.gypi,*.lmi,*.ptl,*.py,*.py3,*.pyde,*.pyi,*.pyp,*.pyt,*.pyw,*.rpy,*.smk,*.spec,*.tac,*.wsgi,*.xpy,{.,}gclient,{.,}pythonrc,{.,}pythonstartup,DEPS,SConscript,SConstruct,Snakefile,wscript set ft=python
endif
if !has_key(s:disabled_packages, 'python-indent')
endif
if !has_key(s:disabled_packages, 'python-compiler')
endif
if !has_key(s:disabled_packages, 'requirements')
au BufNewFile,BufRead *.pip,*require.{txt,in},*requirements.{txt,in},constraints.{txt,in} set ft=requirements
endif
if !has_key(s:disabled_packages, 'qmake')
au BufNewFile,BufRead *.pri,*.pro set ft=qmake
endif
if !has_key(s:disabled_packages, 'qml')
au BufNewFile,BufRead *.qbs,*.qml set ft=qml
endif
if !has_key(s:disabled_packages, 'r-lang')
au BufNewFile,BufRead *.rd set ft=rhelp
au BufNewFile,BufRead *.S,*.r,*.rsx,*.s,{.,}Rprofile,expr-dist set ft=r
endif
if !has_key(s:disabled_packages, 'racket')
au BufNewFile,BufRead *.rkt,*.rktd,*.rktl,*.scrbl set ft=racket
endif
if !has_key(s:disabled_packages, 'ragel')
au BufNewFile,BufRead *.rl set ft=ragel
endif
if !has_key(s:disabled_packages, 'raku')
au! BufNewFile,BufRead *.t call polyglot#detect#T()
au! BufNewFile,BufRead *.pm call polyglot#detect#Pm()
au! BufNewFile,BufRead *.pl call polyglot#detect#Pl()
au BufNewFile,BufRead *.6pl,*.6pm,*.nqp,*.p6,*.p6l,*.p6m,*.pl6,*.pm6,*.pod6,*.raku,*.rakudoc,*.rakumod,*.rakutest,*.t6 set ft=raku
endif
if !has_key(s:disabled_packages, 'raml')
au BufNewFile,BufRead *.raml set ft=raml
endif
if !has_key(s:disabled_packages, 'razor')
au BufNewFile,BufRead *.cshtml,*.razor set ft=razor
endif
if !has_key(s:disabled_packages, 'reason')
au! BufNewFile,BufRead *.re call polyglot#detect#Re()
au BufNewFile,BufRead *.rei set ft=reason
endif
if !has_key(s:disabled_packages, 'rst')
au BufNewFile,BufRead *.rest,*.rest.txt,*.rst,*.rst.txt set ft=rst
endif
if !has_key(s:disabled_packages, 'ruby')
au BufNewFile,BufRead *.erb,*.erb.deface,*.rhtml set ft=eruby
au BufNewFile,BufRead *.axlsx,*.builder,*.cap,*.eye,*.fcgi,*.gemspec,*.god,*.jbuilder,*.mspec,*.opal,*.pluginspec,*.podspec,*.rabl,*.rake,*.rant,*.rb,*.rbi,*.rbuild,*.rbw,*.rbx,*.rjs,*.ru,*.ruby,*.rxml,*.spec,*.thor,*.watchr,{.,}Brewfile,{.,}Guardfile,{.,}autotest,{.,}irbrc,{.,}pryrc,{.,}simplecov,Appraisals,Berksfile,Buildfile,Capfile,Cheffile,Dangerfile,Deliverfile,Fastfile,Gemfile,Gemfile.lock,Guardfile,Jarfile,KitchenSink,Mavenfile,Podfile,Puppetfile,Rakefile,Rantfile,Routefile,Snapfile,Thorfile,Vagrantfile,buildfile,vagrantfile set ft=ruby
au BufNewFile,BufRead [Rr]akefile* call s:StarSetf('ruby')
endif
if !has_key(s:disabled_packages, 'rspec')
au BufNewFile,BufRead *_spec.rb set ft=ruby syntax=rspec
endif
if !has_key(s:disabled_packages, 'yard')
endif
if !has_key(s:disabled_packages, 'brewfile')
au BufNewFile,BufRead Brewfile set ft=brewfile
endif
if !has_key(s:disabled_packages, 'rust')
au BufNewFile,BufRead *.rs,*.rs.in set ft=rust
endif
if !has_key(s:disabled_packages, 'scala')
au BufNewFile,BufRead *.kojo,*.sc,*.scala set ft=scala
endif
if !has_key(s:disabled_packages, 'sbt')
au BufNewFile,BufRead *.sbt set ft=sbt.scala
endif
if !has_key(s:disabled_packages, 'scss')
au BufNewFile,BufRead *.scss set ft=scss
endif
if !has_key(s:disabled_packages, 'sh')
au BufNewFile,BufRead *.zsh,{.,}zfbfmarks,{.,}zlogin,{.,}zlogout,{.,}zprofile,{.,}zshenv,{.,}zshrc set ft=zsh
au BufNewFile,BufRead {.,}zsh* call s:StarSetf('zsh')
au BufNewFile,BufRead {.,}zlog* call s:StarSetf('zsh')
au BufNewFile,BufRead {.,}zcompdump* call s:StarSetf('zsh')
au BufNewFile,BufRead *.bash,*.bats,*.cgi,*.command,*.env,*.fcgi,*.ksh,*.sh,*.sh.in,*.tmux,*.tool,*/etc/udev/cdsymlinks.conf,{.,}bash_aliases,{.,}bash_history,{.,}bash_logout,{.,}bash_profile,{.,}bashrc,{.,}cshrc,{.,}env,{.,}env.example,{.,}flaskenv,{.,}login,{.,}profile,9fs,PKGBUILD,bash_aliases,bash_logout,bash_profile,bashrc,cshrc,gradlew,login,man,profile,zlogin,zlogout,zprofile,zshenv,zshrc set ft=sh
endif
if !has_key(s:disabled_packages, 'zinit')
endif
if !has_key(s:disabled_packages, 'slim')
au BufNewFile,BufRead *.slim set ft=slim
endif
if !has_key(s:disabled_packages, 'slime')
au BufNewFile,BufRead *.slime set ft=slime
endif
if !has_key(s:disabled_packages, 'smt2')
au BufNewFile,BufRead *.smt,*.smt2 set ft=smt2
endif
if !has_key(s:disabled_packages, 'solidity')
au BufNewFile,BufRead *.sol set ft=solidity
endif
if !has_key(s:disabled_packages, 'stylus')
au BufNewFile,BufRead *.styl,*.stylus set ft=stylus
endif
if !has_key(s:disabled_packages, 'svelte')
au BufNewFile,BufRead *.svelte set ft=svelte
endif
if !has_key(s:disabled_packages, 'svg')
au BufNewFile,BufRead *.svg set ft=svg
endif
if !has_key(s:disabled_packages, 'svg-indent')
endif
if !has_key(s:disabled_packages, 'swift')
au BufNewFile,BufRead *.swift set ft=swift
endif
if !has_key(s:disabled_packages, 'sxhkd')
au BufNewFile,BufRead *.sxhkdrc,sxhkdrc set ft=sxhkdrc
endif
if !has_key(s:disabled_packages, 'systemd')
au BufNewFile,BufRead *.automount,*.dnssd,*.link,*.mount,*.netdev,*.network,*.nspawn,*.path,*.service,*.slice,*.socket,*.swap,*.target,*.timer,*/systemd/*.conf set ft=systemd
au BufNewFile,BufRead *.#* call s:StarSetf('systemd')
endif
if !has_key(s:disabled_packages, 'terraform')
au BufNewFile,BufRead *.tf,*.tfvars set ft=terraform
endif
if !has_key(s:disabled_packages, 'textile')
au BufNewFile,BufRead *.textile set ft=textile
endif
if !has_key(s:disabled_packages, 'thrift')
au BufNewFile,BufRead *.thrift set ft=thrift
endif
if !has_key(s:disabled_packages, 'tmux')
au BufNewFile,BufRead {.,}tmux*.conf set ft=tmux
endif
if !has_key(s:disabled_packages, 'toml')
au BufNewFile,BufRead *.toml,*/.cargo/config,*/.cargo/credentials,Cargo.lock,Gopkg.lock,Pipfile,poetry.lock set ft=toml
endif
if !has_key(s:disabled_packages, 'tptp')
au BufNewFile,BufRead *.ax,*.p,*.tptp set ft=tptp
endif
if !has_key(s:disabled_packages, 'twig')
au BufNewFile,BufRead *.xml.twig set ft=xml.twig
au BufNewFile,BufRead *.twig set ft=html.twig
endif
if !has_key(s:disabled_packages, 'typescript')
au BufNewFile,BufRead *.tsx set ft=typescriptreact
au BufNewFile,BufRead *.ts set ft=typescript
endif
if !has_key(s:disabled_packages, 'unison')
au BufNewFile,BufRead *.u,*.uu set ft=unison
endif
if !has_key(s:disabled_packages, 'v')
au BufNewFile,BufRead *.v set ft=v
endif
if !has_key(s:disabled_packages, 'vala')
au BufNewFile,BufRead *.vala,*.valadoc,*.vapi set ft=vala
endif
if !has_key(s:disabled_packages, 'vbnet')
au BufNewFile,BufRead *.vb,*.vbhtml set ft=vbnet
endif
if !has_key(s:disabled_packages, 'vcl')
au BufNewFile,BufRead *.vcl set ft=vcl
endif
if !has_key(s:disabled_packages, 'velocity')
au BufNewFile,BufRead *.vm set ft=velocity
endif
if !has_key(s:disabled_packages, 'vmasm')
au BufNewFile,BufRead *.mar set ft=vmasm
endif
if !has_key(s:disabled_packages, 'vue')
au BufNewFile,BufRead *.vue,*.wpy set ft=vue
endif
if !has_key(s:disabled_packages, 'xdc')
au BufNewFile,BufRead *.xdc set ft=xdc
endif
if !has_key(s:disabled_packages, 'xsl')
au BufNewFile,BufRead *.xsl,*.xslt set ft=xsl
endif
if !has_key(s:disabled_packages, 'ansible')
au BufNewFile,BufRead handlers.*.y{a,}ml,local.y{a,}ml,main.y{a,}ml,playbook.y{a,}ml,requirements.y{a,}ml,roles.*.y{a,}ml,site.y{a,}ml,tasks.*.y{a,}ml set ft=yaml.ansible
au BufNewFile,BufRead host_vars/* call s:StarSetf('yaml.ansible')
au BufNewFile,BufRead group_vars/* call s:StarSetf('yaml.ansible')
endif
if !has_key(s:disabled_packages, 'helm')
au BufNewFile,BufRead */templates/*.tpl,*/templates/*.yaml set ft=helm
endif
if !has_key(s:disabled_packages, 'help')
au BufNewFile,BufRead $VIMRUNTIME/doc/*.txt set ft=help
endif
if !has_key(s:disabled_packages, 'zephir')
au BufNewFile,BufRead *.zep set ft=zephir
endif
if !has_key(s:disabled_packages, 'zig')
au BufNewFile,BufRead *.zig,*.zir set ft=zig
au BufNewFile,BufRead *.zir set ft=zir
endif
if !has_key(s:disabled_packages, 'trasys')
au! BufNewFile,BufRead *.inp call polyglot#detect#Inp()
endif
if !has_key(s:disabled_packages, 'basic')
au BufNewFile,BufRead *.basic set ft=basic
endif
if !has_key(s:disabled_packages, 'visual-basic')
au! BufNewFile,BufRead *.bas call polyglot#detect#Bas()
au BufNewFile,BufRead *.cls,*.ctl,*.dsm,*.frm,*.frx,*.sba,*.vba,*.vbs set ft=vb
endif
if !has_key(s:disabled_packages, 'dosini')
au BufNewFile,BufRead *.dof,*.ini,*.lektorproject,*.prefs,*.pro,*.properties,*/etc/pacman.conf,*/etc/yum.conf,{.,}editorconfig,{.,}npmrc,buildozer.spec set ft=dosini
au BufNewFile,BufRead php.ini-* call s:StarSetf('dosini')
au BufNewFile,BufRead */etc/yum.repos.d/* call s:StarSetf('dosini')
endif
if !has_key(s:disabled_packages, 'odin')
au BufNewFile,BufRead *.odin set ft=odin
endif
if !has_key(s:disabled_packages, 'bzl')
au BufNewFile,BufRead *.BUILD,*.bazel,*.bzl,BUCK,BUILD,BUILD.bazel,Tiltfile,WORKSPACE set ft=bzl
endif
if !has_key(s:disabled_packages, 'prolog')
au! BufNewFile,BufRead *.pl call polyglot#detect#Pl()
au BufNewFile,BufRead *.pdb,*.pro,*.prolog,*.yap set ft=prolog
endif
if !has_key(s:disabled_packages, 'tads')
au! BufNewFile,BufRead *.t call polyglot#detect#T()
endif
if !has_key(s:disabled_packages, 'gitignore')
au BufNewFile,BufRead *.git/info/exclude,*/.config/git/ignore,{.,}gitignore set ft=gitignore
endif
if !has_key(s:disabled_packages, 'sql')
au BufNewFile,BufRead *.bdy,*.ddl,*.fnc,*.pck,*.pkb,*.pks,*.plb,*.pls,*.plsql,*.prc,*.spc,*.sql,*.tpb,*.tps,*.trg,*.tyb,*.tyc,*.typ,*.vw set ft=sql
endif
" DO NOT EDIT CODE ABOVE, IT IS GENERATED WITH MAKEFILE
au! BufNewFile,BufRead,StdinReadPost * if expand("<afile>:e") == "" |
\ call polyglot#shebang#Detect() | endif
au BufEnter * if &ft == "" && expand("<afile>:e") == "" |
\ call s:Observe('shebang#Detect') | endif
augroup END
if !has_key(s:disabled_packages, 'autoindent')
" Code below re-implements sleuth for vim-polyglot
let g:loaded_sleuth = 1
let g:loaded_foobar = 1
" Makes shiftwidth to be synchronized with tabstop by default
if &shiftwidth == &tabstop
let &shiftwidth = 0
endif
function! s:guess(lines) abort
let options = {}
let ccomment = 0
let podcomment = 0
let triplequote = 0
let backtick = 0
let xmlcomment = 0
let heredoc = ''
let minindent = 10
let spaces_minus_tabs = 0
let i = 0
for line in a:lines
let i += 1
if !len(line) || line =~# '^\W*$'
continue
endif
if line =~# '^\s*/\*'
let ccomment = 1
endif
if ccomment
if line =~# '\*/'
let ccomment = 0
endif
continue
endif
if line =~# '^=\w'
let podcomment = 1
endif
if podcomment
if line =~# '^=\%(end\|cut\)\>'
let podcomment = 0
endif
continue
endif
if triplequote
if line =~# '^[^"]*"""[^"]*$'
let triplequote = 0
endif
continue
elseif line =~# '^[^"]*"""[^"]*$'
let triplequote = 1
endif
if backtick
if line =~# '^[^`]*`[^`]*$'
let backtick = 0
endif
continue
elseif &filetype ==# 'go' && line =~# '^[^`]*`[^`]*$'
let backtick = 1
endif
if line =~# '^\s*<\!--'
let xmlcomment = 1
endif
if xmlcomment
if line =~# '-->'
let xmlcomment = 0
endif
continue
endif
" This is correct order because both "<<EOF" and "EOF" matches end
if heredoc != ''
if line =~# heredoc
let heredoc = ''
endif
continue
endif
let herematch = matchlist(line, '\C<<\W*\([A-Z]\+\)\s*$')
if len(herematch) > 0
let heredoc = herematch[1] . '$'
endif
let spaces_minus_tabs += line[0] == "\t" ? 1 : -1
if line[0] == "\t"
setlocal noexpandtab
let &l:shiftwidth=&tabstop
let b:sleuth_culprit .= ':' . i
return 1
elseif line[0] == " "
let indent = len(matchstr(line, '^ *'))
if (indent % 2 == 0 || indent % 3 == 0) && indent < minindent
let minindent = indent
endif
endif
endfor
if minindent < 10
setlocal expandtab
let &l:shiftwidth=minindent
let b:sleuth_culprit .= ':' . i
return 1
endif
return 0
endfunction
function! s:detect_indent() abort
if &buftype ==# 'help'
return
endif
let b:sleuth_culprit = expand("<afile>:p")
if s:guess(getline(1, 32))
return
endif
let pattern = polyglot#sleuth#GlobForFiletype(&filetype)
if len(pattern) == 0
return
endif
let pattern = '{' . pattern . ',.git,.svn,.hg}'
let dir = expand('%:p:h')
let level = 3
while isdirectory(dir) && dir !=# fnamemodify(dir, ':h') && level > 0
" Ignore files from homedir and root
if dir == expand('~') || dir == '/'
unlet b:sleuth_culprit
return
endif
for neighbor in glob(dir . '/' . pattern, 0, 1)[0:level]
let b:sleuth_culprit = neighbor
" Do not consider directories above .git, .svn or .hg
if fnamemodify(neighbor, ":h:t")[0] == "."
let level = 0
continue
endif
if neighbor !=# expand('%:p') && filereadable(neighbor)
if s:guess(readfile(neighbor, '', 32))
return
endif
endif
endfor
let dir = fnamemodify(dir, ':h')
let level -= 1
endwhile
unlet b:sleuth_culprit
endfunction
setglobal smarttab
function! SleuthIndicator() abort
let sw = &shiftwidth ? &shiftwidth : &tabstop
if &expandtab
return 'sw='.sw
elseif &tabstop == sw
return 'ts='.&tabstop
else
return 'sw='.sw.',ts='.&tabstop
endif
endfunction
augroup polyglot-sleuth
au!
au FileType * call s:detect_indent()
au User Flags call Hoist('buffer', 5, 'SleuthIndicator')
augroup END
command! -bar -bang Sleuth call s:detect_indent()
endif
func! s:verify()
if exists("g:polyglot_disabled_not_set")
if exists("g:polyglot_disabled")
echohl WarningMsg
echo "vim-polyglot: g:polyglot_disabled should be defined before loading vim-polyglot"
echohl None
endif
unlet g:polyglot_disabled_not_set
endif
endfunc
au VimEnter * call s:verify()
" Save polyglot_disabled without postfixes
if exists('g:polyglot_disabled')
let g:polyglot_disabled = s:new_polyglot_disabled
endif
" Restore 'cpoptions'
let &cpo = s:cpo_save
unlet s:cpo_save
|