aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
blob: bd2a18479ff76f36b9651a0e04071258a2774e11 (plain) (blame)
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
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
# nvim-lsp

Collection of common configurations for the [Nvim LSP client](https://neovim.io/doc/user/lsp.html).

It is hoped that these configurations serve as a "source of truth", but they
are strictly _best effort_. If something doesn't work, these configs are useful
as a starting point, which you can adjust to fit your environment.

This is work-in-progress and **requires [Nvim HEAD/nightly](https://github.com/neovim/neovim/releases/tag/nightly)**.
Update Nvim and nvim-lsp before reporting an issue.

## Contributions are welcome!

There are many language servers in the world, and not enough time.
Help us create configs for *all the LSPs!*

1. Read [CONTRIBUTING.md](CONTRIBUTING.md) for instructions.
   Ask questions in [Neovim Gitter](https://gitter.im/neovim/neovim).
2. Choose a language from [the coc.nvim wiki](https://github.com/neoclide/coc.nvim/wiki/Language-servers) or
  [the emacs-lsp project](https://github.com/emacs-lsp/lsp-mode#supported-languages).
3. Create a new file at `lua/nvim_lsp/SERVER_NAME.lua`. See
   [existing configs](https://github.com/neovim/nvim-lsp/blob/master/lua/nvim_lsp/) for
   examples (`lua/nvim_lsp/texlab.lua` is an extensive example).

## Install

- Requires [Nvim HEAD/nightly](https://github.com/neovim/neovim/releases/tag/nightly) (v0.5 prerelease).
- nvim-lsp is just a plugin. Install it like any other Vim plugin.

  e.g. [vim-plug](https://github.com/junegunn/vim-plug)
  ```
  :Plug 'neovim/nvim-lsp'
  ```
- Call `:packadd nvim-lsp` in your vimrc if you installed nvim-lsp to
  `'packpath'` or if you use a package manager such as minpac.

## Usage

Each config provides a `setup()` function, to initialize the server with
reasonable defaults and some server-specific things like commands or different
diagnostics.

    vim.cmd('packadd nvim-lsp')
    require'nvim_lsp'.<config>.setup{name=…, settings = {…}, …}

Find the [config](#configurations) for your language, then paste the example
given there to your `init.vim`. **All examples are given in Lua,** see `:help
:lua-heredoc` to use Lua from your init.vim.

Some configs may define additional server-specific functions, e.g. the `texlab`
config provides `nvim_lsp.texlab.buf_build({bufnr})`.

### Example: using the defaults

To use the defaults, just call `setup()` with an empty `config` parameter.
For the `gopls` config, that would be:

    vim.cmd('packadd nvim-lsp')
    require'nvim_lsp'.gopls.setup{}

### Example: override some defaults

To set some config properties at `setup()`, specify their keys. For example to
change how the "project root" is found, set the `root_dir` key:

```lua
local nvim_lsp = require'nvim_lsp'
nvim_lsp.gopls.setup{
  root_dir = nvim_lsp.util.root_pattern('.git');
}
```

The [documentation](#configurations) for each config lists default values and
additional optional properties.

```lua
local nvim_lsp = require'nvim_lsp'
nvim_lsp.texlab.setup{
  name = 'texlab_fancy';
  log_level = vim.lsp.protocol.MessageType.Log;
  message_level = vim.lsp.protocol.MessageType.Log;
  settings = {
    latex = {
      build = {
        onSave = true;
      }
    }
  }
}
```

### Example: custom config

To configure a custom/private server, just require `nvim_lsp/configs` and do
the same as we do if we were adding it to the repository itself.

1. Define the config: `configs.foo_lsp = { … }`
2. Call `setup()`: `require'nvim_lsp'.foo_lsp.setup{}`

```lua
local nvim_lsp = require'nvim_lsp'
local configs = require'nvim_lsp/configs'
-- Check if it's already defined for when I reload this file.
if not nvim_lsp.foo_lsp then
  configs.foo_lsp = {
    default_config = {
      cmd = {'/home/ashkan/works/3rd/lua-language-server/run.sh'};
      filetypes = {'lua'};
      root_dir = function(fname)
        return nvim_lsp.util.find_git_ancestor(fname) or vim.loop.os_homedir()
      end;
      settings = {};
    };
  }
end
nvim_lsp.foo_lsp.setup{}
```

### Example: orverride default config

If you want to change default configs for all servers, you can override default_config like this.

```lua
local nvim_lsp = require'nvim_lsp'
nvim_lsp.util.default_config = vim.tbl_extend(
  "force",
  nvim_lsp.util.default_config,
  { log_level = lsp.protocol.MessageType.Warning.Error }
)
```

### Installing a language server

Configs may provide an `install()` function. Then you can use
`:LspInstall {name}` to install the required language server.
For example, to install the Elm language server:

    :LspInstall elmls

Use `:LspInstallInfo` to see install info.

    :LspInstallInfo

## setup() function

The `setup()` interface:

```
nvim_lsp.SERVER.setup{config}

  The `config` parameter has the same shape as that of
  |vim.lsp.start_client()|, with these additions and changes:

  {root_dir}
    Required for some servers, optional for others.
    Function of the form `function(filename, bufnr)`.
    Called on new candidate buffers being attached-to.
    Returns either a root_dir or nil.

    If a root_dir is returned, then this file will also be attached. You
    can optionally use {filetype} to help pre-filter by filetype.

    If a root_dir is returned which is unique from any previously returned
    root_dir, a new server will be spawned with that root_dir.

    If nil is returned, the buffer is skipped.

    See |nvim_lsp.util.search_ancestors()| and the functions which use it:
    - |nvim_lsp.util.root_pattern(patterns...)| finds an ancestor which
    - contains one of the files in `patterns...`. This is equivalent
      to coc.nvim's "rootPatterns"
    - Related utilities for common tools:
      - |nvim_lsp.util.find_git_root()|
      - |nvim_lsp.util.find_node_modules_root()|
      - |nvim_lsp.util.find_package_json_root()|

  {name}
    Defaults to the server's name.

  {filetypes}
    Set of filetypes to filter for consideration by {root_dir}.
    May be empty.
    Server may specify a default value.

  {log_level}
    controls the level of logs to show from window/logMessage notifications. Defaults to
    vim.lsp.protocol.MessageType.Warning instead of
    vim.lsp.protocol.MessageType.Log.

  {message_level}
    controls the level of messages to show from window/showMessage notifications. Defaults to
    vim.lsp.protocol.MessageType.Warning instead of
    vim.lsp.protocol.MessageType.Log.

  {settings}
    Map with case-sensitive keys corresponding to `workspace/configuration`
    event responses.
    We also notify the server *once* on `initialize` with
    `workspace/didChangeConfiguration`.
    If you change the settings later on, you must emit the notification
    with `client.workspace_did_change_configuration({settings})`
    Example: `settings = { keyName = { subKey = 1 } }`

  {on_attach}
    `function(client)` executed with the current buffer as the one the {client}
    is being attached-to. This is different from
    |vim.lsp.start_client()|'s on_attach parameter, which passes the {bufnr} as
    the second parameter instead. Useful for doing buffer-local setup.

  {on_new_config}
    `function(new_config)` will be executed after a new configuration has been
    created as a result of {root_dir} returning a unique value. You can use this
    as an opportunity to further modify the new_config or use it before it is
    sent to |vim.lsp.start_client()|.
```

# Configurations

The following LSP configs are included. Follow a link to find documentation for
that config.

- [bashls](#bashls)
- [ccls](#ccls)
- [clangd](#clangd)
- [cssls](#cssls)
- [dartls](#dartls)
- [dockerls](#dockerls)
- [efm](#efm)
- [elmls](#elmls)
- [flow](#flow)
- [fortls](#fortls)
- [gdscript](#gdscript)
- [ghcide](#ghcide)
- [gopls](#gopls)
- [hie](#hie)
- [html](#html)
- [intelephense](#intelephense)
- [jsonls](#jsonls)
- [julials](#julials)
- [leanls](#leanls)
- [metals](#metals)
- [nimls](#nimls)
- [ocamlls](#ocamlls)
- [purescriptls](#purescriptls)
- [pyls](#pyls)
- [pyls_ms](#pyls_ms)
- [rls](#rls)
- [rust_analyzer](#rust_analyzer)
- [solargraph](#solargraph)
- [sumneko_lua](#sumneko_lua)
- [terraformls](#terraformls)
- [texlab](#texlab)
- [tsserver](#tsserver)
- [vimls](#vimls)
- [vuels](#vuels)
- [yamlls](#yamlls)

## bashls

https://github.com/mads-hartmann/bash-language-server

Language server for bash, written using tree sitter in typescript.

Can be installed in Nvim with `:LspInstall bashls`

```lua
require'nvim_lsp'.bashls.setup{}

  Default Values:
    cmd = { "bash-language-server", "start" }
    filetypes = { "sh" }
    root_dir = vim's starting directory
```

## ccls

https://github.com/MaskRay/ccls/wiki

ccls relies on a [JSON compilation database](https://clang.llvm.org/docs/JSONCompilationDatabase.html) specified
as compile_commands.json or, for simpler projects, a compile_flags.txt.

This server accepts configuration via the `settings` key.
<details><summary>Available settings:</summary>

- **`ccls.cache.directory`**: `string`

  Default: `".ccls-cache"`
  
  Absolute or relative (from the project root) path to the directory that the cached index will be stored in. Try to have this directory on an SSD. If empty, cached indexes will not be saved on disk.
  
  ${workspaceFolder} will be replaced by the folder where .vscode/settings.json resides.
  
  Cache directories are project-wide, so this should be configured in the workspace settings so multiple indexes do not clash.
  
  Example value: "/work/ccls-cache/chrome/"

- **`ccls.cache.hierarchicalPath`**: `boolean`

  If false, store cache files as $directory/@a@b/c.cc.blob
  
  If true, $directory/a/b/c.cc.blob.

- **`ccls.callHierarchy.qualified`**: `boolean`

  Default: `true`
  
  If true, use qualified names in the call hiearchy

- **`ccls.clang.excludeArgs`**: `array`

  Default: `{}`
  
  An set of command line arguments to strip before passing to clang when indexing. Each list entry is a separate argument.

- **`ccls.clang.extraArgs`**: `array`

  Default: `{}`
  
  An extra set of command line arguments to give clang when indexing. Each list entry is a separate argument.

- **`ccls.clang.pathMappings`**: `array`

  Default: `{}`
  
  Translate paths in compile_commands.json entries, .ccls options and cache files. This allows to reuse cache files built otherwhere if the source paths are different.

- **`ccls.clang.resourceDir`**: `string`

  Default: `""`
  
  Default value to use for clang -resource-dir argument. This will be automatically supplied by ccls if not provided.

- **`ccls.codeLens.enabled`**: `boolean`

  Default: `true`
  
  Specifies whether the references CodeLens should be shown.

- **`ccls.codeLens.localVariables`**: `boolean`

  Set to false to hide code lens on parameters and function local variables.

- **`ccls.codeLens.renderInline`**: `boolean`

  Enables a custom code lens renderer so code lens are displayed inline with code. This removes any vertical-space footprint at the cost of horizontal space.

- **`ccls.completion.caseSensitivity`**: `integer`

  Default: `2`
  
  Case sensitivity when code completion is filtered. 0: case-insensitive, 1: case-folded, i.e. insensitive if no input character is uppercase, 2: case-sensitive

- **`ccls.completion.detailedLabel`**: `boolean`

  When this option is enabled, the completion item label is very detailed, it shows the full signature of the candidate.

- **`ccls.completion.duplicateOptional`**: `boolean`

  For functions with default arguments, generate one more item per default argument.

- **`ccls.completion.enableSnippetInsertion`**: `boolean`

  If true, parameter declarations are inserted as snippets in function/method call arguments when completing a function/method call

- **`ccls.completion.include.blacklist`**: `array`

  Default: `{}`
  
  ECMAScript regex that checks absolute path. If it partially matches, the file is not added to include path auto-complete. An example is "/CACHE/"

- **`ccls.completion.include.maxPathSize`**: `integer`

  Default: `37`
  
  Maximum length for path in #include proposals. If the path length goes beyond this number it will be elided. Set to 0 to always display the full path.

- **`ccls.completion.include.suffixWhitelist`**: `array`

  Default: `{ ".h", ".hpp", ".hh" }`
  
  Only files ending in one of these values will be shown in include auto-complete. Set to the empty-list to disable include auto-complete.

- **`ccls.completion.include.whitelist`**: `array`

  Default: `{}`
  
  ECMAScript regex that checks absolute file path. If it does not partially match, the file is not added to include path auto-complete. An example is "/src/"

- **`ccls.diagnostics.blacklist`**: `array`

  Default: `{}`
  
  Files that match these patterns won't be displayed in diagnostics view.

- **`ccls.diagnostics.onChange`**: `integer`

  Default: `1000`
  
  Time in milliseconds to wait before computing diagnostics on type. -1: disable diagnostics on type.

- **`ccls.diagnostics.onOpen`**: `integer`

  Default: `0`
  
  Time in milliseconds to wait before computing diagnostics when a file is opened.

- **`ccls.diagnostics.onSave`**: `integer`

  Default: `0`
  
  Time in milliseconds to wait before computing diagnostics when a file is saved.

- **`ccls.diagnostics.spellChecking`**: `boolean`

  Default: `true`
  
  Whether to do spell checking on undefined symbol names when computing diagnostics.

- **`ccls.diagnostics.whitelist`**: `array`

  Default: `{}`
  
  Files that match these patterns will be displayed in diagnostics view.

- **`ccls.highlight.blacklist`**: `array|null`

  Default: `vim.NIL`
  
  Files that match these patterns won't have semantic highlight.

- **`ccls.highlight.enum.face`**: `array`

  Default: `{ "variable", "member" }`

- **`ccls.highlight.function.colors`**: `array`

  Default: `{ "#e5b124", "#927754", "#eb992c", "#e2bf8f", "#d67c17", "#88651e", "#e4b953", "#a36526", "#b28927", "#d69855" }`
  
  Colors to use for semantic highlight. A good generator is http://tools.medialab.sciences-po.fr/iwanthue/. If multiple colors are specified, semantic highlight will cycle through them for successive symbols.

- **`ccls.highlight.function.face`**: `array`

  Default: `{}`

- **`ccls.highlight.global.face`**: `array`

  Default: `{ "fontWeight: bolder" }`

- **`ccls.highlight.globalVariable.face`**: `array`

  Default: `{ "variable", "global" }`

- **`ccls.highlight.largeFileSize`**: `integer|null`

  Default: `vim.NIL`
  
  Disable semantic highlight for files larger than the size.

- **`ccls.highlight.macro.colors`**: `array`

  Default: `{ "#e79528", "#c5373d", "#e8a272", "#d84f2b", "#a67245", "#e27a33", "#9b4a31", "#b66a1e", "#e27a71", "#cf6d49" }`
  
  Colors to use for semantic highlight. A good generator is http://tools.medialab.sciences-po.fr/iwanthue/. If multiple colors are specified, semantic highlight will cycle through them for successive symbols.

- **`ccls.highlight.macro.face`**: `array`

  Default: `{ "variable" }`

- **`ccls.highlight.member.face`**: `array`

  Default: `{ "fontStyle: italic" }`

- **`ccls.highlight.memberFunction.face`**: `array`

  Default: `{ "function", "member" }`

- **`ccls.highlight.memberVariable.face`**: `array`

  Default: `{ "variable", "member" }`

- **`ccls.highlight.namespace.colors`**: `array`

  Default: `{ "#429921", "#58c1a4", "#5ec648", "#36815b", "#83c65d", "#417b2f", "#43cc71", "#7eb769", "#58bf89", "#3e9f4a" }`
  
  Colors to use for semantic highlight. A good generator is http://tools.medialab.sciences-po.fr/iwanthue/. If multiple colors are specified, semantic highlight will cycle through them for successive symbols.

- **`ccls.highlight.namespace.face`**: `array`

  Default: `{ "type" }`

- **`ccls.highlight.parameter.face`**: `array`

  Default: `{ "variable" }`

- **`ccls.highlight.static.face`**: `array`

  Default: `{ "fontWeight: bold" }`

- **`ccls.highlight.staticMemberFunction.face`**: `array`

  Default: `{ "function", "static" }`

- **`ccls.highlight.staticMemberVariable.face`**: `array`

  Default: `{ "variable", "static" }`

- **`ccls.highlight.staticVariable.face`**: `array`

  Default: `{ "variable", "static" }`

- **`ccls.highlight.type.colors`**: `array`

  Default: `{ "#e1afc3", "#d533bb", "#9b677f", "#e350b6", "#a04360", "#dd82bc", "#de3864", "#ad3f87", "#dd7a90", "#e0438a" }`
  
  Colors to use for semantic highlight. A good generator is http://tools.medialab.sciences-po.fr/iwanthue/. If multiple colors are specified, semantic highlight will cycle through them for successive symbols.

- **`ccls.highlight.type.face`**: `array`

  Default: `{}`

- **`ccls.highlight.typeAlias.face`**: `array`

  Default: `{ "type" }`

- **`ccls.highlight.variable.colors`**: `array`

  Default: `{ "#587d87", "#26cdca", "#397797", "#57c2cc", "#306b72", "#6cbcdf", "#368896", "#3ea0d2", "#48a5af", "#7ca6b7" }`
  
  Colors to use for semantic highlight. A good generator is http://tools.medialab.sciences-po.fr/iwanthue/. If multiple colors are specified, semantic highlight will cycle through them for successive symbols.

- **`ccls.highlight.variable.face`**: `array`

  Default: `{}`

- **`ccls.highlight.whitelist`**: `array|null`

  Default: `vim.NIL`
  
  Files that match these patterns will have semantic highlight.

- **`ccls.index.blacklist`**: `array`

  Default: `{}`
  
  A translation unit (cc/cpp file) is not indexed if any of the ECMAScript regexes in this list partially matches translation unit's the absolute path.

- **`ccls.index.initialBlacklist`**: `array`

  Default: `{}`
  
  Files matched by the regexes should not be indexed on initialization. Indexing is deferred to when they are opened.

- **`ccls.index.initialWhitelist`**: `array`

  Default: `{}`
  
  Files matched by the regexes should be indexed on initialization.

- **`ccls.index.maxInitializerLines`**: `integer`

  Default: `15`
  
  Number of lines of the initializer / macro definition showed in hover.

- **`ccls.index.multiVersion`**: `integer`

  Default: `0`
  
  If not 0, a file will be indexed in each tranlation unit that includes it.

- **`ccls.index.onChange`**: `boolean`

  Allow indexing on textDocument/didChange. May be too slow for big projects, so it is off by default.

- **`ccls.index.threads`**: `number`

  Default: `0`
  
  Number of indexer threads. If 0, 80% of cores are used.

- **`ccls.index.trackDependency`**: `integer`

  Default: `2`
  
  Whether to reparse a file if write times of its dependencies have changed. The file will always be reparsed if its own write time changes.
  
  0: no, 1: only during initial load of project, 2: yes

- **`ccls.index.whitelist`**: `array`

  Default: `{}`
  
  If a translation unit's absolute path partially matches any ECMAScript regex in this list, it will be indexed. The whitelist takes priority over the blacklist. To only index files in the whitelist, make "ccls.index.blacklist" match everything, ie, set it to ".*".

- **`ccls.launch.args`**: `array`

  Default: `{}`
  
  Array containing extra arguments to pass to the ccls binary

- **`ccls.launch.command`**: `string`

  Default: `"ccls"`
  
  Path to the ccls binary (default assumes the binary is in the PATH)

- **`ccls.misc.compilationDatabaseCommand`**: `string`

  Default: `""`
  
  If not empty, the compilation database command to use

- **`ccls.misc.compilationDatabaseDirectory`**: `string`

  Default: `""`
  
  If not empty, the compilation database directory to use instead of the project root

- **`ccls.misc.showInactiveRegions`**: `boolean`

  Default: `true`
  
  If true, ccls will highlight skipped ranges.

- **`ccls.statusUpdateInterval`**: `integer`

  Default: `2000`
  
  Interval between updating ccls status in milliseconds. Set to 0 to disable.

- **`ccls.theme.dark.skippedRange.backgroundColor`**: `string`

  Default: `"rgba(18, 18, 18, 0.3)"`
  
  CSS color to apply to the background when the code region has been disabled by the preprocessor in a dark theme.

- **`ccls.theme.dark.skippedRange.textColor`**: `string`

  Default: `"rgb(100, 100, 100)"`
  
  CSS color to apply to text when the code region has been disabled by the preprocessor in a dark theme.

- **`ccls.theme.light.skippedRange.backgroundColor`**: `string`

  Default: `"rgba(220, 220, 220, 0.3)"`
  
  CSS color to apply to the background when the code region has been disabled by the preprocessor in a light theme.

- **`ccls.theme.light.skippedRange.textColor`**: `string`

  Default: `"rgb(100, 100, 100)"`
  
  CSS color to apply to text when the code region has been disabled by the preprocessor in a light theme.

- **`ccls.trace.websocketEndpointUrl`**: `string`

  Default: `""`
  
  When set, logs all LSP messages to specified WebSocket endpoint.

- **`ccls.treeViews.doubleClickTimeoutMs`**: `number`

  Default: `500`
  
  If a tree view entry is double-clicked within this timeout value, vscode will navigate to the entry.

- **`ccls.workspaceSymbol.caseSensitivity`**: `integer`

  Default: `1`
  
  Case sensitivity when searching workspace symbols. 0: case-insensitive, 1: case-folded, i.e. insensitive if no input character is uppercase, 2: case-sensitive

- **`ccls.workspaceSymbol.maxNum`**: `number|null`

  Default: `vim.NIL`
  
  The maximum number of global search (ie, Ctrl+P + #foo) search results to report. For small search strings on large projects there can be a massive number of results (ie, over 1,000,000) so this limit is important to avoid extremely long delays. null means use the default value provided by the ccls language server.

</details>

```lua
require'nvim_lsp'.ccls.setup{}

  Default Values:
    capabilities = default capabilities, with offsetEncoding utf-8
    cmd = { "ccls" }
    filetypes = { "c", "cpp", "objc", "objcpp" }
    on_init = function to handle changing offsetEncoding
    root_dir = root_pattern("compile_commands.json", "compile_flags.txt", ".git")
```

## clangd

https://clang.llvm.org/extra/clangd/Installation.html

**NOTE:** Clang >= 9 is recommended! See [this issue for more](https://github.com/neovim/nvim-lsp/issues/23).

clangd relies on a [JSON compilation database](https://clang.llvm.org/docs/JSONCompilationDatabase.html) specified
as compile_commands.json or, for simpler projects, a compile_flags.txt.


```lua
require'nvim_lsp'.clangd.setup{}

  Default Values:
    capabilities = default capabilities, with offsetEncoding utf-8
    cmd = { "clangd", "--background-index" }
    filetypes = { "c", "cpp", "objc", "objcpp" }
    on_init = function to handle changing offsetEncoding
    root_dir = root_pattern("compile_commands.json", "compile_flags.txt", ".git") or dirname
```

## cssls

https://github.com/vscode-langservers/vscode-css-languageserver-bin

`css-languageserver` can be installed via `:LspInstall cssls` or by yourself with `npm`:
```sh
npm install -g vscode-css-languageserver-bin
```

Can be installed in Nvim with `:LspInstall cssls`

```lua
require'nvim_lsp'.cssls.setup{}

  Default Values:
    capabilities = default capabilities, with offsetEncoding utf-8
    cmd = { "css-languageserver", "--stdio" }
    filetypes = { "css", "scss", "less" }
    on_init = function to handle changing offsetEncoding
    root_dir = root_pattern("package.json")
    settings = {
      css = {
        validate = true
      },
      less = {
        validate = true
      },
      scss = {
        validate = true
      }
    }
```

## dartls

https://github.com/dart-lang/sdk/tree/master/pkg/analysis_server/tool/lsp_spec

Language server for dart.

This server accepts configuration via the `settings` key.
<details><summary>Available settings:</summary>

- **`dart.additionalAnalyzerFileExtensions`**: `array`

  Default: `{}`
  
  Array items: `{type = "string"}`
  
  Additional file extensions that should be analyzed (usually used in combination with analyzer plugins).

- **`dart.allowAnalytics`**: `boolean`

  Default: `true`
  
  Whether to send analytics such as startup timings, frequency of use of features and analysis server crashes.

- **`dart.analysisExcludedFolders`**: `array`

  Default: `{}`
  
  Array items: `{type = "string"}`
  
  An array of paths to be excluded from Dart analysis. This option should usually be set at the Workspace level.

- **`dart.analysisServerFolding`**: `boolean`

  Default: `true`
  
  Whether to use folding data from the Dart analysis server instead of the built-in VS Code indent-based folding.

- **`dart.analyzeAngularTemplates`**: `boolean`

  Default: `true`
  
  Whether to enable analysis for AngularDart templates (requires the angular_analyzer_plugin).

- **`dart.analyzerAdditionalArgs`**: `array`

  Default: `{}`
  
  Array items: `{type = "string"}`
  
  Additional arguments to pass to the Dart analysis server.

- **`dart.analyzerDiagnosticsPort`**: `null|number`

  Default: `vim.NIL`
  
  The port number to be used for the Dart analysis server diagnostic server.

- **`dart.analyzerInstrumentationLogFile`**: `null|string`

  Default: `vim.NIL`
  
  The path to a log file for very detailed logging in the Dart analysis server that may be useful when trying to diagnose analysis server issues.

- **`dart.analyzerLogFile`**: `null|string`

  Default: `vim.NIL`
  
  The path to a log file for communication between Dart Code and the analysis server.

- **`dart.analyzerObservatoryPort`**: `null|number`

  Default: `vim.NIL`
  
  The port number to be used for the Dart analysis server observatory.

- **`dart.analyzerPath`**: `null|string`

  Default: `vim.NIL`
  
  The path to a custom Dart analysis server.

- **`dart.analyzerSshHost`**: `null|string`

  Default: `vim.NIL`
  
  An SSH host to run the analysis server.
  This can be useful when modifying code on a remote machine using SSHFS.

- **`dart.autoImportCompletions`**: `boolean`

  Default: `true`
  
  Whether to include symbols that have not been imported in the code completion list and automatically insert the required import when selecting them.

- **`dart.buildRunnerAdditionalArgs`**: `array`

  Default: `{}`
  
  Array items: `{type = "string"}`
  
  Additional args to pass to the build_runner when building/watching/serving.

- **`dart.checkForSdkUpdates`**: `boolean`

  Default: `true`
  
  Whether to check you are using the latest version of the Dart SDK at startup.

- **`dart.closingLabels`**: `boolean`

  Default: `true`
  
  Whether to show annotations against constructor, method invocations and lists that span multiple lines.

- **`dart.debugExternalLibraries`**: `boolean`

  Whether to mark external pub package libraries as debuggable, enabling stepping into them while debugging.

- **`dart.debugSdkLibraries`**: `boolean`

  Whether to mark SDK libraries as debuggable, enabling stepping into them while debugging.

- **`dart.devToolsLogFile`**: `null|string`

  Default: `vim.NIL`
  
  The path to a low-traffic log file for the Dart DevTools service.

- **`dart.devToolsPort`**: `null|number`

  Default: `vim.NIL`
  
  The port number to be used for the Dart DevTools.

- **`dart.devToolsReuseWindows`**: `boolean`

  Default: `true`
  
  Whether to try to reuse existing DevTools windows instead of launching new ones. Only works for instances of DevTools launched by the DevTools server on the local machine.

- **`dart.devToolsTheme`**: `enum { "dark", "light" }`

  Default: `"dark"`
  
  The theme to use for Dart DevTools.

- **`dart.doNotFormat`**: `array`

  Default: `{}`
  
  Array items: `{type = "string"}`
  
  An array of glob patterns that should be excluded for formatting. The pattern is matched against the absolute path of the file. Use **/test/** to skip formatting for all test folders.

- **`dart.enableCompletionCommitCharacters`**: `boolean`

  Whether to automatically commit the selected completion item when pressing certain keys such as . , ( and [.

- **`dart.enableSdkFormatter`**: `boolean`

  Default: `true`
  
  Whether to enable the dart_style formatter included with the Dart SDK.

- **`dart.env`**: `object`

  Default: `vim.empty_dict()`
  
  Additional environment variables to be added to all Dart/Flutter processes spawned by the Dart and Flutter extensions.

- **`dart.evaluateGettersInDebugViews`**: `boolean`

  Default: `true`
  
  Whether to evaluate getters in order to display them in debug views (such as the Variables, Watch and Hovers views).

- **`dart.extensionLogFile`**: `null|string`

  Default: `vim.NIL`
  
  The path to a low-traffic log file for basic extension and editor issues.

- **`dart.flutterAdbConnectOnChromeOs`**: `boolean`

  Whether to automatically run 'adb connect 100.115.92.2:5555' when spawning the Flutter Daemon when running on Chrome OS.

- **`dart.flutterAdditionalArgs`**: `array`

  Default: `{}`
  
  Array items: `{type = "string"}`
  
  Additional args to pass to all flutter commands.

- **`dart.flutterAndroidX`**: `boolean`

  Whether to pass the --androidx flag when running the 'Flutter: New Project' command.

- **`dart.flutterCreateAndroidLanguage`**: `enum { "java", "kotlin" }`

  Default: `"kotlin"`
  
  The programming language to use for Android apps when creating new projects using the 'Flutter: New Project' command.

- **`dart.flutterCreateIOSLanguage`**: `enum { "objc", "swift" }`

  Default: `"swift"`
  
  The programming language to use for IOS apps when creating new projects using the 'Flutter: New Project' command.

- **`dart.flutterCreateOrganization`**: `null|string`

  Default: `vim.NIL`
  
  The organization responsible for your new Flutter project, in reverse domain name notation. This string is used in Java package names and as prefix in the iOS bundle identifier when creating new projects using the 'Flutter: New Project' command.

- **`dart.flutterDaemonLogFile`**: `null|string`

  Default: `vim.NIL`
  
  The path to a log file for the 'flutter daemon' communication which is the service that provides information about connected devices used to show in the status bar.

- **`dart.flutterGutterIcons`**: `boolean`

  Default: `true`
  
  Whether to show Flutter icons and colors in the editor gutter.

- **`dart.flutterHotReloadOnSave`**: `boolean`

  Default: `true`
  
  Whether to automatically send a Hot Reload request during debug session when saving files.

- **`dart.flutterHotRestartOnSave`**: `boolean`

  Default: `true`
  
  Whether to automatically send a Hot Restart request during a debug session when saving files if Hot Reload is not available but Hot Restart is.

- **`dart.flutterOutline`**: `boolean`

  Default: `true`
  
  Whether to show the Flutter Outline tree in the side bar.

- **`dart.flutterRunLogFile`**: `null|string`

  Default: `vim.NIL`
  
  The path to a log file for 'flutter run' which is used to launch Flutter applications from VS Code. This is useful when trying to diagnose issues with applications launching (or failing to) on simulators and devices. Use ${name} in the log file name to prevent concurrent debug sessions overwriting each others logs.

- **`dart.flutterScreenshotPath`**: `null|string`

  Default: `vim.NIL`
  
  The path to a directory to save Flutter screenshots.

- **`dart.flutterSdkPath`**: `null|string`

  Default: `vim.NIL`
  
  The location of the Flutter SDK to use. If blank, Dart Code will attempt to find it from the project folder, FLUTTER_ROOT environment variable and the PATH environment variable.

- **`dart.flutterSdkPaths`**: `array`

  Default: `{}`
  
  Array items: `{type = "string"}`
  
  An array of strings that are either Flutter SDKs or folders that contains multiple Flutter SDKs in sub-folders. When set, the version number in the status bar will be clickable to quickly switch between SDKs.

- **`dart.flutterSelectDeviceWhenConnected`**: `boolean`

  Default: `true`
  
  Whether to set newly connected devices as the current device in Flutter projects.

- **`dart.flutterStructuredErrors`**: `boolean`

  Default: `true`
  
  Whether to use Flutter's structured error support for improve error display.

- **`dart.flutterTestLogFile`**: `null|string`

  Default: `vim.NIL`
  
  The path to a log file for 'flutter test' which is used to run unit tests from VS Code. This is useful when trying to diagnose issues with unit test executions. Use ${name} in the log file name to prevent concurrent debug sessions overwriting each others logs.

- **`dart.flutterTrackWidgetCreation`**: `boolean`

  Default: `true`
  
  Whether to pass --track-widget-creation to Flutter apps (required to support 'Inspect Widget'). This setting is always ignored when running in Profile or Release mode.

- **`dart.insertArgumentPlaceholders`**: `boolean`

  Default: `true`
  
  Whether to insert argument placeholders during code completions. This feature is automatically disabled when enableCompletionCommitCharacters is enabled.

- **`dart.lineLength`**: `integer`

  Default: `80`
  
  The maximum length of a line of code. This is used by the document formatter.

- **`dart.maxLogLineLength`**: `number`

  Default: `2000`
  
  The maximum length of a line in the log file. Lines longer than this will be truncated and suffixed with an ellipsis.

- **`dart.notifyAnalyzerErrors`**: `boolean`

  Default: `true`
  
  Whether to show a notification the first few times an analysis server exception occurs.

- **`dart.observatoryLogFile`**: `null|string`

  Default: `vim.NIL`
  
  The path to a log file for communication between Dart Code and Observatory (the VM debugger). This is useful when trying to diagnose issues with debugging such as missed breakpoints. Use ${name} in the log file name to prevent concurrent debug sessions overwriting each others logs.

- **`dart.openDevTools`**: `enum { "never", "flutter", "always" }`

  Default: `"never"`
  
  Whether to automatically open DevTools at the start of a debug session.

- **`dart.openTestView`**: `array`

  Default: `{ "testRunStart" }`
  
  Array items: `{enum = { "testRunStart", "testFailure" }}`
  
  When to automatically switch focus to the test list (array to support multiple values).

- **`dart.previewBuildRunnerTasks`**: `boolean`

  Whether to register Pub Build Runner tasks with VS Code.

- **`dart.previewFlutterUiGuides`**: `boolean`

  Whether to enable the Flutter UI Guides preview.

- **`dart.previewFlutterUiGuidesCustomTracking`**: `boolean`

  Whether to enable custom tracking of Flutter UI guidelines (to hide some latency of waiting for the next Flutter Outline).

- **`dart.previewHotReloadOnSaveWatcher`**: `boolean`

  Whether to perform hot-reload-on-save based on a filesystem watcher for Dart files rather than using VS Code's onDidSave event. This allows reloads to trigger when external tools modify Dart source files.

- **`dart.previewNewCompletionPlaceholders`**: `boolean`

  Default: `true`
  
  Whether to enable new behaviour for code completion to include @required arguments as placeholders (when using dart.insertArgumentPlaceholders).

- **`dart.previewToStringInDebugViews`**: `boolean`

  Whether to call toString() on objects when rendering them in debug views (such as the Variables, Watch and Hovers views). Only applies to views of 15 or fewer values for performance reasons.

- **`dart.promptToGetPackages`**: `boolean`

  Default: `true`
  
  Whether to prompt to get packages when opening a project with out of date packages.

- **`dart.promptToRunIfErrors`**: `boolean`

  Default: `true`
  
  Whether to prompt before running if there are errors in your project. Test scripts will be excluded from the check unless they're the script being run.

- **`dart.pubAdditionalArgs`**: `array`

  Default: `{}`
  
  Array items: `{type = "string"}`
  
  Additional args to pass to all pub commands.

- **`dart.pubTestLogFile`**: `null|string`

  Default: `vim.NIL`
  
  The path to a log file for 'pub run test' runs. This is useful when trying to diagnose issues with unit test executions. Use ${name} in the log file name to prevent concurrent debug sessions overwriting each others logs.

- **`dart.runPubGetOnPubspecChanges`**: `boolean`

  Default: `true`
  
  Whether to automatically run 'pub get' whenever pubspec.yaml is saved.

- **`dart.sdkPath`**: `null|string`

  Default: `vim.NIL`
  
  The location of the Dart SDK to use for analyzing and executing code. If blank, Dart Code will attempt to find it from the PATH environment variable. When editing a Flutter project, the version of Dart included in the Flutter SDK is used in preference.

- **`dart.sdkPaths`**: `array`

  Default: `{}`
  
  Array items: `{type = "string"}`
  
  An array of strings that are either Dart SDKs or folders that contains multiple Dart SDKs in sub-folders. When set, the version number in the status bar will be clickable to quickly switch between SDKs.

- **`dart.showDartDeveloperLogs`**: `boolean`

  Default: `true`
  
  Whether to show logs from dart:developer's log() function in the debug console.

- **`dart.showDartPadSampleCodeLens`**: `boolean`

  Default: `true`
  
  Whether to show CodeLens actions in the editor for opening online DartPad samples.

- **`dart.showIgnoreQuickFixes`**: `boolean`

  Whether to show quick fixes for ignoring hints and lints.

- **`dart.showTestCodeLens`**: `boolean`

  Default: `true`
  
  Whether to show CodeLens actions in the editor for quick running/debugging tests.

- **`dart.showTodos`**: `boolean`

  Default: `true`
  
  Whether to show TODOs in the Problems list.

- **`dart.triggerSignatureHelpAutomatically`**: `boolean`

  Whether to automatically trigger signature help when pressing keys such as , and (.

- **`dart.useKnownChromeOSPorts`**: `boolean`

  Default: `true`
  
  Whether to use specific ports for Observatory and DevTools when running in Chrome OS. This is required to connect from the native Chrome OS browser but will prevent apps from launching if the ports are already in-use (for example if trying to run a second app).

- **`dart.vmAdditionalArgs`**: `array`

  Default: `{}`
  
  Array items: `{type = "string"}`
  
  Additional args to pass to the Dart VM when running/debugging command line apps.

- **`dart.warnWhenEditingFilesOutsideWorkspace`**: `boolean`

  Default: `true`
  
  Whether to show a warning when modifying files outside of the workspace.

- **`dart.webDaemonLogFile`**: `null|string`

  Default: `vim.NIL`
  
  The path to a log file for communication between Dart Code and the webdev daemon. This is useful when trying to diagnose issues with launching web applications. Use ${name} in the log file name to prevent concurrent debug sessions overwriting each others logs.

</details>

```lua
require'nvim_lsp'.dartls.setup{}

  Default Values:
    cmd = { "dart", "/usr/lib/dart/bin/snapshots/analysis_server.dart.snapshot", "--lsp" }
    filetypes = { "dart" }
    init_options = {
      closingLabels = "true",
      fluttreOutline = "false",
      onlyAnalyzeProjectsWithOpenFiles = "false",
      outline = "true",
      suggestFromUnimportedLibraries = "true"
    }
    root_dir = root_pattern("pubspec.yaml")
```

## dockerls

https://github.com/rcjsuen/dockerfile-language-server-nodejs

`docker-langserver` can be installed via `:LspInstall dockerls` or by yourself with `npm`:
```sh
npm install -g dockerfile-language-server-nodejs
```
    
Can be installed in Nvim with `:LspInstall dockerls`

```lua
require'nvim_lsp'.dockerls.setup{}

  Default Values:
    cmd = { "docker-langserver", "--stdio" }
    filetypes = { "Dockerfile", "dockerfile" }
    root_dir = root_pattern("Dockerfile")
```

## efm

https://github.com/mattn/efm-langserver

General purpose Language Server that can use specified error message format generated from specified command.


```lua
require'nvim_lsp'.efm.setup{}

  Default Values:
    cmd = { "efm-langserver" }
    root_dir = root_pattern(".git")
```

## elmls

https://github.com/elm-tooling/elm-language-server#installation

If you don't want to use Nvim to install it, then you can use:
```sh
npm install -g elm elm-test elm-format @elm-tooling/elm-language-server
```

Can be installed in Nvim with `:LspInstall elmls`
This server accepts configuration via the `settings` key.
<details><summary>Available settings:</summary>

- **`elmLS.elmAnalyseTrigger`**: `enum { "change", "save", "never" }`

  Default: `"change"`
  
  When do you want the extension to run elm-analyse? Might need a restart to take effect.

- **`elmLS.elmFormatPath`**: `string`

  Default: `""`
  
  The path to your elm-format executable. Should be empty by default, in that case it will assume the name and try to first get it from a local npm installation or a global one. If you set it manually it will not try to load from the npm folder.

- **`elmLS.elmPath`**: `string`

  Default: `""`
  
  The path to your elm executable. Should be empty by default, in that case it will assume the name and try to first get it from a local npm installation or a global one. If you set it manually it will not try to load from the npm folder.

- **`elmLS.elmTestPath`**: `string`

  Default: `""`
  
  The path to your elm-test executable. Should be empty by default, in that case it will assume the name and try to first get it from a local npm installation or a global one. If you set it manually it will not try to load from the npm folder.

- **`elmLS.trace.server`**: `enum { "off", "messages", "verbose" }`

  Default: `"off"`
  
  Traces the communication between VS Code and the language server.

</details>

```lua
require'nvim_lsp'.elmls.setup{}

  Default Values:
    capabilities = default capabilities, with offsetEncoding utf-8
    cmd = { "elm-language-server" }
    filetypes = { "elm" }
    init_options = {
      elmAnalyseTrigger = "change",
      elmFormatPath = "elm-format",
      elmPath = "elm",
      elmTestPath = "elm-test"
    }
    on_init = function to handle changing offsetEncoding
    root_dir = root_pattern("elm.json")
```

## flow

https://flow.org/
https://github.com/facebook/flow

See below for how to setup Flow itself.
https://flow.org/en/docs/install/

See below for lsp command options.

```sh
npm run flow lsp -- --help
```
    
This server accepts configuration via the `settings` key.
<details><summary>Available settings:</summary>

- **`flow.coverageSeverity`**: `enum { "error", "warn", "info" }`

  Default: `"info"`
  
  Type coverage diagnostic severity

- **`flow.enabled`**: `boolean`

  Default: `true`
  
  Is flow enabled

- **`flow.fileExtensions`**: `array`

  Default: `{ ".js", ".mjs", ".jsx", ".flow", ".json" }`
  
  Array items: `{type = "string"}`
  
  (Supported only when useLSP: false). File extensions to consider for flow processing

- **`flow.lazyMode`**: `string`

  Default: `vim.NIL`
  
  Set value to enable flow lazy mode

- **`flow.logLevel`**: `enum { "error", "warn", "info", "trace" }`

  Default: `"info"`
  
  Log level for output panel logs

- **`flow.pathToFlow`**: `string`

  Default: `"flow"`
  
  Absolute path to flow binary. Special var ${workspaceFolder} or ${flowconfigDir} can be used in path (NOTE: in windows you can use '/' and can omit '.cmd' in path)

- **`flow.runOnAllFiles`**: `boolean`

  (Supported only when useLSP: false) Run Flow on all files, No need to put //@flow comment on top of files.

- **`flow.runOnEdit`**: `boolean`

  Default: `true`
  
  If true will run flow on every edit, otherwise will run only when changes are saved (Note: 'useLSP: true' only supports syntax errors)

- **`flow.showStatus`**: `boolean`

  Default: `true`
  
  (Supported only when useLSP: false) If true will display flow status is the statusbar

- **`flow.showUncovered`**: `boolean`

  If true will show uncovered code by default

- **`flow.stopFlowOnExit`**: `boolean`

  Default: `true`
  
  Stop Flow on Exit

- **`flow.trace.server`**

  Default: `"off"`
  
  Traces the communication between VSCode and the flow lsp service.

- **`flow.useBundledFlow`**: `boolean`

  Default: `true`
  
  If true will use flow bundled with this plugin if nothing works

- **`flow.useCodeSnippetOnFunctionSuggest`**: `boolean`

  Default: `true`
  
  Complete functions with their parameter signature.

- **`flow.useLSP`**: `boolean`

  Default: `true`
  
  Turn off to switch from the official Flow Language Server implementation to talking directly to flow.

- **`flow.useNPMPackagedFlow`**: `boolean`

  Default: `true`
  
  Support using flow through your node_modules folder, WARNING: Checking this box is a security risk. When you open a project we will immediately run code contained within it.

</details>

```lua
require'nvim_lsp'.flow.setup{}

  Default Values:
    cmd = { "npm", "run", "flow", "lsp" }
    filetypes = { "javascript", "javascriptreact", "javascript.jsx" }
    root_dir = root_pattern(".flowconfig")
```

## fortls

https://github.com/hansec/fortran-language-server

Fortran Language Server for the Language Server Protocol
    
This server accepts configuration via the `settings` key.
<details><summary>Available settings:</summary>

- **`fortran-ls.autocompletePrefix`**: `boolean`

  Filter autocomplete suggestions with variable prefix

- **`fortran-ls.displayVerWarning`**: `boolean`

  Default: `true`
  
  Provides notifications when the underlying language server is out of date.

- **`fortran-ls.enableCodeActions`**: `boolean`

  Enable experimental code actions (requires v1.7.0+).

- **`fortran-ls.executablePath`**: `string`

  Default: `"fortls"`
  
  Path to the Fortran language server (fortls).

- **`fortran-ls.hoverSignature`**: `boolean`

  Show signature information in hover for argument (also enables 'variableHover').

- **`fortran-ls.includeSymbolMem`**: `boolean`

  Default: `true`
  
  Include type members in document outline (also used for 'Go to Symbol in File')

- **`fortran-ls.incrementalSync`**: `boolean`

  Default: `true`
  
  Use incremental synchronization for file changes.

- **`fortran-ls.lowercaseIntrinsics`**: `boolean`

  Use lowercase for intrinsics and keywords in autocomplete requests.

- **`fortran-ls.maxCommentLineLength`**: `number`

  Default: `-1`
  
  Maximum comment line length (requires v1.8.0+).

- **`fortran-ls.maxLineLength`**: `number`

  Default: `-1`
  
  Maximum line length (requires v1.8.0+).

- **`fortran-ls.notifyInit`**: `boolean`

  Notify when workspace initialization is complete (requires v1.7.0+).

- **`fortran-ls.useSignatureHelp`**: `boolean`

  Default: `true`
  
  Use signature help instead of snippets when available.

- **`fortran-ls.variableHover`**: `boolean`

  Show hover information for variables.

</details>

```lua
require'nvim_lsp'.fortls.setup{}

  Default Values:
    cmd = { "fortls" }
    filetypes = { "fortran" }
    root_dir = root_pattern(".fortls")
    settings = {
      nthreads = 1
    }
```

## gdscript

https://github.com/godotengine/godot

Language server for GDScript, used by Godot Engine.


```lua
require'nvim_lsp'.gdscript.setup{}

  Default Values:
    cmd = { "nc", "localhost", "6008" }
    filetypes = { "gd", "gdscript3" }
    root_dir = <function 1>
```

## ghcide

https://github.com/digital-asset/ghcide

A library for building Haskell IDE tooling.

This server accepts configuration via the `settings` key.
<details><summary>Available settings:</summary>

- **`hic.arguments`**: `string`

  Default: `"--lsp"`
  
  The arguments you would like to pass to the executable

- **`hic.executablePath`**: `string`

  Default: `"ghcide"`
  
  The location of your ghcide executable

</details>

```lua
require'nvim_lsp'.ghcide.setup{}

  Default Values:
    cmd = { "ghcide", "--lsp" }
    filetypes = { "haskell", "lhaskell" }
    root_dir = root_pattern("stack.yaml", "hie-bios", "BUILD.bazel", "cabal.config", "package.yaml")
```

## gopls

https://github.com/golang/tools/tree/master/gopls

Google's lsp server for golang.


```lua
require'nvim_lsp'.gopls.setup{}

  Default Values:
    cmd = { "gopls" }
    filetypes = { "go" }
    root_dir = root_pattern("go.mod", ".git")
```

## hie

https://github.com/haskell/haskell-ide-engine

the following init_options are supported (see https://github.com/haskell/haskell-ide-engine#configuration):
```lua
init_options = {
  languageServerHaskell = {
    hlintOn = bool;
    maxNumberOfProblems = number;
    diagnosticsDebounceDuration = number;
    liquidOn = bool (default false);
    completionSnippetsOn = bool (default true);
    formatOnImportOn = bool (default true);
    formattingProvider = string (default "brittany", alternate "floskell");
  }
}
```
        
This server accepts configuration via the `settings` key.
<details><summary>Available settings:</summary>

- **`languageServerHaskell.completionSnippetsOn`**: `boolean`

  Default: `true`
  
  Show snippets with type information when using code completion

- **`languageServerHaskell.diagnosticsOnChange`**: `boolean`

  Default: `true`
  
  Compute diagnostics continuously as you type. Turn off to only generate diagnostics on file save.

- **`languageServerHaskell.enableHIE`**: `boolean`

  Default: `true`
  
  Enable/disable HIE (useful for multi-root workspaces).

- **`languageServerHaskell.formatOnImportOn`**: `boolean`

  Default: `true`
  
  When adding an import, use the formatter on the result

- **`languageServerHaskell.formattingProvider`**: `enum { "brittany", "floskell", "ormolu", "none" }`

  Default: `"brittany"`
  
  The tool to use for formatting requests.

- **`languageServerHaskell.hieExecutablePath`**: `string`

  Default: `""`
  
  Set the path to your hie executable, if it's not already on your $PATH. Works with ~, ${HOME} and ${workspaceFolder}.

- **`languageServerHaskell.hlintOn`**: `boolean`

  Default: `true`
  
  Get suggestions from hlint

- **`languageServerHaskell.liquidOn`**: `boolean`

  Get diagnostics from liquid haskell

- **`languageServerHaskell.logFile`**: `string`

  Default: `""`
  
  If set, redirects the logs to a file.

- **`languageServerHaskell.maxNumberOfProblems`**: `number`

  Default: `100`
  
  Controls the maximum number of problems produced by the server.

- **`languageServerHaskell.noLspParam`**: `boolean`

  Do not set the '--lsp' flag in the hie/hie-wrapper arguments when launching it

- **`languageServerHaskell.showTypeForSelection.command.location`**: `enum { "dropdown", "channel" }`

  Default: `"dropdown"`
  
  Determines where the type information for selected text will be shown when the `showType` command is triggered (distinct from automatically showing this information when hover is triggered).
  dropdown: in a dropdown
  channel: will be revealed in an output channel

- **`languageServerHaskell.showTypeForSelection.onHover`**: `boolean`

  Default: `true`
  
  If true, when an expression is selected, the hover tooltip will attempt to display the type of the entire expression - rather than just the term under the cursor.

- **`languageServerHaskell.trace.server`**: `enum { "off", "messages", "verbose" }`

  Default: `"off"`
  
  Traces the communication between VSCode and the languageServerHaskell service.

- **`languageServerHaskell.useCustomHieWrapper`**: `boolean`

  Use your own custom wrapper for hie (remember to specify the path!). This will take precedence over useHieWrapper and hieExecutablePath.

- **`languageServerHaskell.useCustomHieWrapperPath`**: `string`

  Default: `""`
  
  Specify the full path to your own custom hie wrapper (e.g. ${HOME}/.hie-wrapper.sh). Works with ~, ${HOME} and ${workspaceFolder}.

</details>

```lua
require'nvim_lsp'.hie.setup{}

  Default Values:
    cmd = { "hie-wrapper", "--lsp" }
    filetypes = { "haskell" }
    root_dir = root_pattern("stack.yaml", "package.yaml", ".git")
```

## html

https://github.com/vscode-langservers/vscode-html-languageserver-bin

`html-languageserver` can be installed via `:LspInstall html` or by yourself with `npm`:
```sh
npm install -g vscode-html-languageserver-bin
```

Can be installed in Nvim with `:LspInstall html`

```lua
require'nvim_lsp'.html.setup{}

  Default Values:
    capabilities = {
      offsetEncoding = { "utf-8", "utf-16" },
      textDocument = {
        completion = {
          completionItem = {
            commitCharactersSupport = false,
            deprecatedSupport = false,
            documentationFormat = { "markdown", "plaintext" },
            preselectSupport = false,
            snippetSupport = false
          },
          completionItemKind = {
            valueSet = { 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 }
          },
          contextSupport = false,
          dynamicRegistration = false
        },
        documentHighlight = {
          dynamicRegistration = false
        },
        documentSymbol = {
          dynamicRegistration = false,
          hierarchicalDocumentSymbolSupport = true,
          symbolKind = {
            valueSet = { 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 }
          }
        },
        hover = {
          contentFormat = { "markdown", "plaintext" },
          dynamicRegistration = false
        },
        references = {
          dynamicRegistration = false
        },
        signatureHelp = {
          dynamicRegistration = false,
          signatureInformation = {
            documentationFormat = { "markdown", "plaintext" }
          }
        },
        synchronization = {
          didSave = true,
          dynamicRegistration = false,
          willSave = false,
          willSaveWaitUntil = false
        }
      }
    }
    cmd = { "html-languageserver", "--stdio" }
    filetypes = { "html" }
    init_options = {
      configurationSection = { "html", "css", "javascript" },
      embeddedLanguages = {
        css = true,
        javascript = true
      }
    }
    on_init = <function 1>
    root_dir = <function 1>
    settings = {}
```

## intelephense

https://intelephense.com/

`intelephense` can be installed via `:LspInstall intelephense` or by yourself with `npm`:
```sh
npm install -g intelephense
```

Can be installed in Nvim with `:LspInstall intelephense`

```lua
require'nvim_lsp'.intelephense.setup{}

  Default Values:
    capabilities = default capabilities, with offsetEncoding utf-8
    cmd = { "intelephense", "--stdio" }
    filetypes = { "php" }
    on_init = function to handle changing offsetEncoding
    root_dir = root_pattern("composer.json", ".git")
```

## jsonls

https://github.com/vscode-langservers/vscode-json-languageserver

vscode-json-languageserver, a language server for JSON and JSON schema

`vscode-json-languageserver` can be installed via `:LspInstall jsonls` or by yourself with `npm`:
```sh
npm install -g vscode-json-languageserver
```

Can be installed in Nvim with `:LspInstall jsonls`
This server accepts configuration via the `settings` key.
<details><summary>Available settings:</summary>

- **`json.colorDecorators.enable`**: `boolean`

  Default: `true`
  
  %json.colorDecorators.enable.desc%

- **`json.format.enable`**: `boolean`

  Default: `true`
  
  %json.format.enable.desc%

- **`json.maxItemsComputed`**: `number`

  Default: `5000`
  
  %json.maxItemsComputed.desc%

- **`json.schemas`**: `array`

  Array items: `{default = {fileMatch = { "/myfile" },url = "schemaURL"},properties = {fileMatch = {description = "%json.schemas.fileMatch.desc%",items = {default = "MyFile.json",description = "%json.schemas.fileMatch.item.desc%",type = "string"},minItems = 1,type = "array"},schema = {["$ref"] = "http://json-schema.org/draft-07/schema#",description = "%json.schemas.schema.desc%"},url = {default = "/user.schema.json",description = "%json.schemas.url.desc%",type = "string"}},type = "object"}`
  
  %json.schemas.desc%

- **`json.trace.server`**: `enum { "off", "messages", "verbose" }`

  Default: `"off"`
  
  %json.tracing.desc%

</details>

```lua
require'nvim_lsp'.jsonls.setup{}

  Default Values:
    capabilities = {
      offsetEncoding = { "utf-8", "utf-16" },
      textDocument = {
        completion = {
          completionItem = {
            commitCharactersSupport = false,
            deprecatedSupport = false,
            documentationFormat = { "markdown", "plaintext" },
            preselectSupport = false,
            snippetSupport = false
          },
          completionItemKind = {
            valueSet = { 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 }
          },
          contextSupport = false,
          dynamicRegistration = false
        },
        documentHighlight = {
          dynamicRegistration = false
        },
        documentSymbol = {
          dynamicRegistration = false,
          hierarchicalDocumentSymbolSupport = true,
          symbolKind = {
            valueSet = { 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 }
          }
        },
        hover = {
          contentFormat = { "markdown", "plaintext" },
          dynamicRegistration = false
        },
        references = {
          dynamicRegistration = false
        },
        signatureHelp = {
          dynamicRegistration = false,
          signatureInformation = {
            documentationFormat = { "markdown", "plaintext" }
          }
        },
        synchronization = {
          didSave = true,
          dynamicRegistration = false,
          willSave = false,
          willSaveWaitUntil = false
        }
      }
    }
    cmd = { "vscode-json-languageserver", "--stdio" }
    filetypes = { "json" }
    on_init = <function 1>
    root_dir = root_pattern(".git", vim.fn.getcwd())
```

## julials

https://github.com/julia-vscode/julia-vscode
`LanguageServer.jl` can be installed via `:LspInstall julials` or by yourself the `julia` and `Pkg`:
```sh
julia -e 'using Pkg; Pkg.add("LanguageServer")'
```
    
Can be installed in Nvim with `:LspInstall julials`
This server accepts configuration via the `settings` key.
<details><summary>Available settings:</summary>

- **`julia.NumThreads`**: `integer`

  Default: `1`
  
  Number of threads to use for Julia processes.

- **`julia.additionalArgs`**: `array`

  Default: `{}`
  
  Additional julia arguments.

- **`julia.enableCrashReporter`**: `boolean|null`

  Default: `vim.NIL`
  
  Enable crash reports to be sent to the julia VS Code extension developers.

- **`julia.enableTelemetry`**: `boolean|null`

  Default: `vim.NIL`
  
  Enable usage data and errors to be sent to the julia VS Code extension developers.

- **`julia.environmentPath`**: `string|null`

  Default: `vim.NIL`
  
  Path to a julia environment.

- **`julia.executablePath`**: `string`

  Default: `""`
  
  Points to the julia executable.

- **`julia.format.calls`**: `boolean`

  Default: `true`
  
  Format function calls.

- **`julia.format.comments`**: `boolean`

  Default: `true`
  
  Format comments.

- **`julia.format.curly`**: `boolean`

  Default: `true`
  
  Format braces.

- **`julia.format.docs`**: `boolean`

  Default: `true`
  
  Format inline documentation.

- **`julia.format.indent`**: `integer`

  Default: `4`
  
  Indent size for formatting.

- **`julia.format.indents`**: `boolean`

  Default: `true`
  
  Format file indents.

- **`julia.format.iterOps`**: `boolean`

  Default: `true`
  
  Format loop iterators.

- **`julia.format.kw`**: `boolean`

  Default: `true`
  
  Remove spaces around = in function keywords.

- **`julia.format.ops`**: `boolean`

  Default: `true`
  
  Format whitespace around operators.

- **`julia.format.tuples`**: `boolean`

  Default: `true`
  
  Format tuples.

- **`julia.lint.call`**: `boolean`

  Check calls against existing methods. (experimental)

- **`julia.lint.constif`**: `boolean`

  Default: `true`
  
  Check for constant conditionals of if statements.

- **`julia.lint.iter`**: `boolean`

  Default: `true`
  
  Check iterator syntax of loops.

- **`julia.lint.lazy`**: `boolean`

  Default: `true`
  
  Check for deterministic lazy boolean operators.

- **`julia.lint.missingrefs`**: `boolean`

  Default: `true`
  
  Report possibly missing references.

- **`julia.lint.modname`**: `boolean`

  Default: `true`
  
  Check for invalid submodule names.

- **`julia.lint.pirates`**: `boolean`

  Default: `true`
  
  Check for type piracy.

- **`julia.lint.run`**: `boolean`

  Default: `true`
  
  Run the linter on active files.

- **`julia.lint.typeparam`**: `boolean`

  Default: `true`
  
  Check for unused DataType parameters.

- **`julia.trace.server`**: `enum { "off", "messages", "verbose" }`

  Default: `"off"`
  
  Traces the communication between VS Code and the language server.

- **`julia.useCustomSysimage`**: `boolean`

  Default: `"false"`
  
  Use an existing custom sysimage when starting the REPL

- **`julia.usePlotPane`**: `boolean`

  Default: `true`
  
  Display plots within vscode.

- **`julia.useRevise`**: `boolean`

  Default: `true`
  
  Load Revise.jl on startup of the REPL.

</details>

```lua
require'nvim_lsp'.julials.setup{}

  Default Values:
    cmd = { "julia", "--project", "--startup-file=no", "--history-file=no", "-e", "        using LanguageServer;\n        using Pkg;\n        server = LanguageServer.LanguageServerInstance(stdin, stdout, false, dirname(Pkg.Types.Context().env.project_file));\n        server.runlinter = true; run(server);\n        " }
    filetypes = { "julia" }
    root_dir = <function 1>
```

## leanls

https://github.com/leanprover/lean-client-js/tree/master/lean-language-server

Lean language server.
    
This server accepts configuration via the `settings` key.
<details><summary>Available settings:</summary>

- **`lean.executablePath`**: `string`

  Default: `"lean"`
  
  Path to the Lean executable to use.

- **`lean.extraOptions`**: `array`

  Default: `{}`
  
  Array items: `{description = "a single command-line argument",type = "string"}`
  
  Extra command-line options for the Lean server.

- **`lean.infoViewAllErrorsOnLine`**: `boolean`

  Info view: show all errors on the current line, instead of just the ones on the right of the cursor.

- **`lean.infoViewAutoOpen`**: `boolean`

  Default: `true`
  
  Info view: open info view when Lean extension is activated.

- **`lean.infoViewAutoOpenShowGoal`**: `boolean`

  Default: `true`
  
  Info view: auto open shows goal and messages for the current line (instead of all messages for the whole file)

- **`lean.infoViewFilterIndex`**: `number`

  Default: `-1`
  
  Index of the filter applied to the tactic state (in the array infoViewTacticStateFilters). An index of -1 means no filter is applied.

- **`lean.infoViewStyle`**: `string`

  Default: `""`
  
  Add an additional CSS snippet to the info view.

- **`lean.infoViewTacticStateFilters`**: `array`

  Default: `{ {flags = "",match = false,regex = "^_"}, {flags = "",match = true,name = "goals only",regex = "^(⊢|\\d+ goals|case|$)"} }`
  
  Array items: `{description = "an object with required properties 'regex': string, 'match': boolean, and 'flags': string, and optional property 'name': string",properties = {flags = {description = "additional flags passed to the RegExp constructor, e.g. 'i' for ignore case",type = "string"},match = {description = "whether tactic state lines matching the value of 'regex' should be included (true) or excluded (false)",type = "boolean"},name = {description = "name displayed in the dropdown",type = "string"},regex = {description = "a properly-escaped regex string, e.g. '^_' matches any string beginning with an underscore",type = "string"}},required = { "regex", "match", "flags" },type = "object"}`
  
  An array of objects containing regular expression strings that can be used to filter (positively or negatively) the tactic state in the info view. Set to an empty array '[]' to hide the filter select dropdown.
   
   Each object must contain the following keys: 'regex': string, 'match': boolean, 'flags': string.
   'regex' is a properly-escaped regex string,
   'match' = true (false) means blocks in the tactic state matching 'regex' will be included (excluded) in the info view, 
   'flags' are additional flags passed to the JavaScript RegExp constructor.
   The 'name' key is optional and may contain a string that is displayed in the dropdown instead of the full regex details.

- **`lean.input.customTranslations`**: `object`

  Default: `vim.empty_dict()`
  
  Array items: `{description = "Unicode character to translate to",type = "string"}`
  
  Add additional input Unicode translations. Example: `{"foo": "☺"}` will correct `\foo` to `☺`.

- **`lean.input.enabled`**: `boolean`

  Default: `true`
  
  Enable Lean input mode.

- **`lean.input.languages`**: `array`

  Default: `{ "lean" }`
  
  Array items: `{description = "the name of a language, e.g. 'lean', 'markdown'",type = "string"}`
  
  Enable Lean Unicode input in other file types.

- **`lean.input.leader`**: `string`

  Default: `"\\"`
  
  Leader key to trigger input mode.

- **`lean.leanpkgPath`**: `string`

  Default: `"leanpkg"`
  
  Path to the leanpkg executable to use.

- **`lean.memoryLimit`**: `number`

  Default: `4096`
  
  Set a memory limit (in megabytes) for the Lean server.

- **`lean.progressMessages`**: `boolean`

  Show error messages where Lean is still checking.

- **`lean.roiModeDefault`**: `string`

  Default: `"visible"`
  
  Set the default region of interest mode (nothing, visible, lines, linesAndAbove, open, or project) for the Lean extension.

- **`lean.timeLimit`**: `number`

  Default: `100000`
  
  Set a deterministic timeout (it is approximately the maximum number of memory allocations in thousands) for the Lean server.

- **`lean.typeInStatusBar`**: `boolean`

  Default: `true`
  
  Show the type of term under the cursor in the status bar.

- **`lean.typesInCompletionList`**: `boolean`

  Display types of all items in the list of completions. By default, only the type of the highlighted item is shown.

</details>

```lua
require'nvim_lsp'.leanls.setup{}

  Default Values:
    cmd = { "lean-language-server", "--stdio" }
    filetypes = { "lean" }
    root_dir = util.root_pattern(".git")
```

## metals

https://scalameta.org/metals/

Scala language server with rich IDE features.
`metals` can be installed via `:LspInstall metals`.

Can be installed in Nvim with `:LspInstall metals`
This server accepts configuration via the `settings` key.
<details><summary>Available settings:</summary>

- **`metals.bloopSbtAlreadyInstalled`**: `boolean`

  

- **`metals.bloopVersion`**: `string`

  

- **`metals.customRepositories`**: `array`

  Array items: `{type = "string"}`

- **`metals.gradleScript`**: `string`

  

- **`metals.javaHome`**: `string`

  

- **`metals.mavenScript`**: `string`

  

- **`metals.millScript`**: `string`

  

- **`metals.sbtScript`**: `string`

  

- **`metals.scalafmtConfigPath`**: `string`

  

- **`metals.serverProperties`**: `array`

  Array items: `{type = "string"}`

- **`metals.serverVersion`**: `string`

  Default: `"0.8.1"`

</details>

```lua
require'nvim_lsp'.metals.setup{}

  Default Values:
    cmd = { "metals" }
    filetype = { "scala" }
    root_dir = util.root_pattern("build.sbt")
```

## nimls

https://github.com/PMunch/nimlsp
`nimlsp` can be installed via `:LspInstall nimls` or by yourself the `nimble` package manager:
```sh
nimble install nimlsp
```
    
Can be installed in Nvim with `:LspInstall nimls`
This server accepts configuration via the `settings` key.
<details><summary>Available settings:</summary>

- **`nim.buildCommand`**: `string`

  Default: `"c"`
  
  Nim build command (c, cpp, doc, etc)

- **`nim.buildOnSave`**: `boolean`

  Execute build task from tasks.json file on save.

- **`nim.licenseString`**: `string`

  Default: `""`
  
  Optional license text that will be inserted on nim file creation.

- **`nim.lintOnSave`**: `boolean`

  Default: `true`
  
  Check code by using 'nim check' on save.

- **`nim.logNimsuggest`**: `boolean`

  Enable verbose logging of nimsuggest to use profile directory.

- **`nim.nimsuggestRestartTimeout`**: `integer`

  Default: `60`
  
  Nimsuggest will be restarted after this timeout in minutes, if 0 then restart disabled.

- **`nim.project`**: `array`

  Default: `{}`
  
  Nim project file, if empty use current selected.

- **`nim.runOutputDirectory`**: `string`

  Default: `""`
  
  Output directory for run selected file command. The directory is relative to the workspace root.

- **`nim.test-project`**: `string`

  Default: `""`
  
  Optional test project.

</details>

```lua
require'nvim_lsp'.nimls.setup{}

  Default Values:
    cmd = { "nimlsp" }
    filetypes = { "nim" }
    root_dir = root_pattern(".git") or os_homedir
```

## ocamlls

https://github.com/ocaml-lsp/ocaml-language-server

`ocaml-language-server` can be installed via `:LspInstall ocamlls` or by yourself with `npm`
```sh
npm install -g ocaml-langauge-server
```
    
Can be installed in Nvim with `:LspInstall ocamlls`

```lua
require'nvim_lsp'.ocamlls.setup{}

  Default Values:
    cmd = { "ocaml-language-server", "--stdio" }
    filetypes = { "ocaml", "reason" }
    root_dir = root_pattern(".merlin", "package.json")
```

## purescriptls

https://github.com/nwolverson/purescript-language-server
`purescript-language-server` can be installed via `:LspInstall purescriptls` or by yourself with `npm`
```sh
npm install -g purescript-language-server
```

Can be installed in Nvim with `:LspInstall purescriptls`
This server accepts configuration via the `settings` key.
<details><summary>Available settings:</summary>

- **`purescript.addNpmPath`**: `boolean`

  Whether to add the local npm bin directory to the PATH for purs IDE server and build command.

- **`purescript.addPscPackageSources`**: `boolean`

  Whether to add psc-package sources to the globs passed to the IDE server for source locations (specifically the output of `psc-package sources`, if this is a psc-package project). Update due to adding packages/changing package set requires psc-ide server restart.

- **`purescript.addSpagoSources`**: `boolean`

  Whether to add spago sources to the globs passed to the IDE server for source locations (specifically the output of `spago sources`, if this is a spago project). Update due to adding packages/changing package set requires psc-ide server restart.

- **`purescript.autoStartPscIde`**: `boolean`

  Default: `true`
  
  Whether to automatically start/connect to purs IDE server when editing a PureScript file (includes connecting to an existing running instance). If this is disabled, various features like autocomplete, tooltips, and other type info will not work until start command is run manually.

- **`purescript.autocompleteAddImport`**: `boolean`

  Default: `true`
  
  Whether to automatically add imported identifiers when accepting autocomplete result.

- **`purescript.autocompleteAllModules`**: `boolean`

  Default: `true`
  
  Whether to always autocomplete from all built modules, or just those imported in the file. Suggestions from all modules always available by explicitly triggering autocomplete.

- **`purescript.autocompleteGrouped`**: `boolean`

  Default: `true`
  
  Whether to group completions in autocomplete results. Requires compiler 0.11.6

- **`purescript.autocompleteLimit`**: `null|integer`

  Default: `vim.NIL`
  
  Maximum number of results to fetch for an autocompletion request. May improve performance on large projects.

- **`purescript.buildCommand`**: `string`

  Default: `"pulp build -- --json-errors"`
  
  Build command to use with arguments. Not passed to shell. eg `pulp build -- --json-errors` (this default requires pulp >=10)

- **`purescript.censorWarnings`**: `array`

  Default: `{}`
  
  Array items: `{type = "string"}`
  
  The warning codes to censor, both for fast rebuild and a full build. Unrelated to any psa setup. e.g.: ["ShadowedName","MissingTypeDeclaration"]

- **`purescript.codegenTargets`**: `array`

  Default: `vim.NIL`
  
  Array items: `{type = "string"}`
  
  List of codegen targets to pass to the compiler for rebuild. e.g. js, corefn. If not specified (rather than empty array) this will not be passed and the compiler will default to js. Requires 0.12.1+

- **`purescript.editorMode`**: `boolean`

  Whether to set the editor-mode flag on the IDE server

- **`purescript.fastRebuild`**: `boolean`

  Default: `true`
  
  Enable purs IDE server fast rebuild

- **`purescript.importsPreferredModules`**: `array`

  Default: `{ "Prelude" }`
  
  Array items: `{type = "string"}`
  
  Module to prefer to insert when adding imports which have been re-exported. In order of preference, most preferred first.

- **`purescript.outputDirectory`**: `string`

  Default: `vim.NIL`
  
  Override purs ide output directory (output/ if not specified). This should match up to your build command

- **`purescript.packagePath`**: `string`

  Default: `"bower_components"`
  
  Path to installed packages. Will be used to control globs passed to IDE server for source locations.  Change requires IDE server restart.

- **`purescript.polling`**: `boolean`

  Whether to set the polling flag on the IDE server

- **`purescript.preludeModule`**: `string`

  Default: `"Prelude"`
  
  Module to consider as your default prelude, if an auto-complete suggestion comes from this module it will be imported unqualified.

- **`purescript.pscIdePort`**: `integer|null`

  Default: `vim.NIL`
  
  Port to use for purs IDE server (whether an existing server or to start a new one). By default a random port is chosen (or an existing port in .psc-ide-port if present), if this is specified no attempt will be made to select an alternative port on failure.

- **`purescript.pscIdeServerExe`**: `string`

  Default: `"psc-ide-server"`
  
  Location of legacy psc-ide-server executable (resolved wrt PATH)

- **`purescript.pscIdelogLevel`**: `string`

  Default: `""`
  
  Log level for purs IDE server

- **`purescript.pursExe`**: `string`

  Default: `"purs"`
  
  Location of purs executable (resolved wrt PATH)

- **`purescript.sourcePath`**: `string`

  Default: `"src"`
  
  Path to application source root. Will be used to control globs passed to IDE server for source locations. Change requires IDE server restart.

- **`purescript.trace.server`**: `enum { "off", "messages", "verbose" }`

  Default: `"off"`
  
  Traces the communication between VSCode and the PureScript language service.

- **`purescript.useCombinedExe`**: `boolean`

  Default: `true`
  
  Whether to use the new combined purs executable. This will default to true in the future then go away.

</details>

```lua
require'nvim_lsp'.purescriptls.setup{}

  Default Values:
    capabilities = {
      offsetEncoding = { "utf-8", "utf-16" },
      textDocument = {
        completion = {
          completionItem = {
            commitCharactersSupport = false,
            deprecatedSupport = false,
            documentationFormat = { "markdown", "plaintext" },
            preselectSupport = false,
            snippetSupport = false
          },
          completionItemKind = {
            valueSet = { 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 }
          },
          contextSupport = false,
          dynamicRegistration = false
        },
        documentHighlight = {
          dynamicRegistration = false
        },
        documentSymbol = {
          dynamicRegistration = false,
          hierarchicalDocumentSymbolSupport = true,
          symbolKind = {
            valueSet = { 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 }
          }
        },
        hover = {
          contentFormat = { "markdown", "plaintext" },
          dynamicRegistration = false
        },
        references = {
          dynamicRegistration = false
        },
        signatureHelp = {
          dynamicRegistration = false,
          signatureInformation = {
            documentationFormat = { "markdown", "plaintext" }
          }
        },
        synchronization = {
          didSave = true,
          dynamicRegistration = false,
          willSave = false,
          willSaveWaitUntil = false
        }
      }
    }
    cmd = { "purescript-language-server", "--stdio" }
    filetypes = { "purescript" }
    on_init = <function 1>
    root_dir = root_pattern("spago.dhall, bower.json")
```

## pyls

https://github.com/palantir/python-language-server

`python-language-server`, a language server for Python.
    
This server accepts configuration via the `settings` key.
<details><summary>Available settings:</summary>

- **`pyls.configurationSources`**: `array`

  Default: `{ "pycodestyle" }`
  
  Array items: `{enum = { "pycodestyle", "pyflakes" },type = "string"}`
  
  List of configuration sources to use.

- **`pyls.executable`**: `string`

  Default: `"pyls"`
  
  Language server executable

- **`pyls.plugins.jedi.environment`**: `string`

  Default: `vim.NIL`
  
  Define environment for jedi.Script and Jedi.names.

- **`pyls.plugins.jedi.extra_paths`**: `array`

  Default: `{}`
  
  Define extra paths for jedi.Script.

- **`pyls.plugins.jedi_completion.enabled`**: `boolean`

  Default: `true`
  
  Enable or disable the plugin.

- **`pyls.plugins.jedi_completion.include_params`**: `boolean`

  Default: `true`
  
  Auto-completes methods and classes with tabstops for each parameter.

- **`pyls.plugins.jedi_definition.enabled`**: `boolean`

  Default: `true`
  
  Enable or disable the plugin.

- **`pyls.plugins.jedi_definition.follow_builtin_imports`**: `boolean`

  Default: `true`
  
  If follow_imports is True will decide if it follow builtin imports.

- **`pyls.plugins.jedi_definition.follow_imports`**: `boolean`

  Default: `true`
  
  The goto call will follow imports.

- **`pyls.plugins.jedi_hover.enabled`**: `boolean`

  Default: `true`
  
  Enable or disable the plugin.

- **`pyls.plugins.jedi_references.enabled`**: `boolean`

  Default: `true`
  
  Enable or disable the plugin.

- **`pyls.plugins.jedi_signature_help.enabled`**: `boolean`

  Default: `true`
  
  Enable or disable the plugin.

- **`pyls.plugins.jedi_symbols.all_scopes`**: `boolean`

  Default: `true`
  
  If True lists the names of all scopes instead of only the module namespace.

- **`pyls.plugins.jedi_symbols.enabled`**: `boolean`

  Default: `true`
  
  Enable or disable the plugin.

- **`pyls.plugins.mccabe.enabled`**: `boolean`

  Default: `true`
  
  Enable or disable the plugin.

- **`pyls.plugins.mccabe.threshold`**: `number`

  Default: `15`
  
  The minimum threshold that triggers warnings about cyclomatic complexity.

- **`pyls.plugins.preload.enabled`**: `boolean`

  Default: `true`
  
  Enable or disable the plugin.

- **`pyls.plugins.preload.modules`**: `array`

  Default: `vim.NIL`
  
  Array items: `{type = "string"}`
  
  List of modules to import on startup

- **`pyls.plugins.pycodestyle.enabled`**: `boolean`

  Default: `true`
  
  Enable or disable the plugin.

- **`pyls.plugins.pycodestyle.exclude`**: `array`

  Default: `vim.NIL`
  
  Array items: `{type = "string"}`
  
  Exclude files or directories which match these patterns.

- **`pyls.plugins.pycodestyle.filename`**: `array`

  Default: `vim.NIL`
  
  Array items: `{type = "string"}`
  
  When parsing directories, only check filenames matching these patterns.

- **`pyls.plugins.pycodestyle.hangClosing`**: `boolean`

  Default: `vim.NIL`
  
  Hang closing bracket instead of matching indentation of opening bracket's line.

- **`pyls.plugins.pycodestyle.ignore`**: `array`

  Default: `vim.NIL`
  
  Array items: `{type = "string"}`
  
  Ignore errors and warnings

- **`pyls.plugins.pycodestyle.maxLineLength`**: `number`

  Default: `vim.NIL`
  
  Set maximum allowed line length.

- **`pyls.plugins.pycodestyle.select`**: `array`

  Default: `vim.NIL`
  
  Array items: `{type = "string"}`
  
  Select errors and warnings

- **`pyls.plugins.pydocstyle.addIgnore`**: `array`

  Default: `vim.NIL`
  
  Array items: `{type = "string"}`
  
  Ignore errors and warnings in addition to the specified convention.

- **`pyls.plugins.pydocstyle.addSelect`**: `array`

  Default: `vim.NIL`
  
  Array items: `{type = "string"}`
  
  Select errors and warnings in addition to the specified convention.

- **`pyls.plugins.pydocstyle.convention`**: `enum { "pep257", "numpy" }`

  Default: `vim.NIL`
  
  Choose the basic list of checked errors by specifying an existing convention.

- **`pyls.plugins.pydocstyle.enabled`**: `boolean`

  Enable or disable the plugin.

- **`pyls.plugins.pydocstyle.ignore`**: `array`

  Default: `vim.NIL`
  
  Array items: `{type = "string"}`
  
  Ignore errors and warnings

- **`pyls.plugins.pydocstyle.match`**: `string`

  Default: `"(?!test_).*\\.py"`
  
  Check only files that exactly match the given regular expression; default is to match files that don't start with 'test_' but end with '.py'.

- **`pyls.plugins.pydocstyle.matchDir`**: `string`

  Default: `"[^\\.].*"`
  
  Search only dirs that exactly match the given regular expression; default is to match dirs which do not begin with a dot.

- **`pyls.plugins.pydocstyle.select`**: `array`

  Default: `vim.NIL`
  
  Array items: `{type = "string"}`
  
  Select errors and warnings

- **`pyls.plugins.pyflakes.enabled`**: `boolean`

  Default: `true`
  
  Enable or disable the plugin.

- **`pyls.plugins.pylint.args`**: `array`

  Default: `vim.NIL`
  
  Array items: `{type = "string"}`
  
  Arguments to pass to pylint.

- **`pyls.plugins.pylint.enabled`**: `boolean`

  Enable or disable the plugin.

- **`pyls.plugins.rope_completion.enabled`**: `boolean`

  Default: `true`
  
  Enable or disable the plugin.

- **`pyls.plugins.yapf.enabled`**: `boolean`

  Default: `true`
  
  Enable or disable the plugin.

- **`pyls.rope.extensionModules`**: `string`

  Default: `vim.NIL`
  
  Builtin and c-extension modules that are allowed to be imported and inspected by rope.

- **`pyls.rope.ropeFolder`**: `array`

  Default: `vim.NIL`
  
  Array items: `{type = "string"}`
  
  The name of the folder in which rope stores project configurations and data.  Pass `null` for not using such a folder at all.

</details>

```lua
require'nvim_lsp'.pyls.setup{}

  Default Values:
    cmd = { "pyls" }
    filetypes = { "python" }
    root_dir = vim's starting directory
```

## pyls_ms

https://github.com/Microsoft/python-language-server

`python-language-server`, a language server for Python.

Requires [.NET Core](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-install-script) to run. On Linux or macOS:

```bash
curl -L https://dot.net/v1/dotnet-install.sh | sh
```

This server accepts configuration via the `settings` key.

    
Can be installed in Nvim with `:LspInstall pyls_ms`

```lua
require'nvim_lsp'.pyls_ms.setup{}

  Default Values:
    filetypes = { "python" }
    init_options = {
      analysisUpdates = true,
      asyncStartup = true,
      displayOptions = {},
      interpreter = {
        properties = {
          InterpreterPath = "/usr/bin/python",
          Version = "2.7"
        }
      }
    }
    on_new_config = <function 1>
    root_dir = vim's starting directory
    settings = {
      python = {
        analysis = {
          disabled = {},
          errors = {},
          info = {}
        }
      }
    }
```

## rls

https://github.com/rust-lang/rls

rls, a language server for Rust

See https://github.com/rust-lang/rls#setup to setup rls itself.
See https://github.com/rust-lang/rls#configuration for rls-specific settings.

If you want to use rls for a particular build, eg nightly, set cmd as follows:

```lua
cmd = {"rustup", "run", "nightly", "rls"}
```
    
This server accepts configuration via the `settings` key.
<details><summary>Available settings:</summary>

- **`rust-client.channel`**: `enum { "stable", "beta", "nightly" }`

  Default: `vim.NIL`
  
  Rust channel to invoke rustup with. Ignored if rustup is disabled. By default, uses the same channel as your currently open project.

- **`rust-client.disableRustup`**: `boolean`

  Disable usage of rustup and use rustc/rls from PATH.

- **`rust-client.enableMultiProjectSetup`**: `boolean`

  Allow multiple projects in the same folder, along with remove the constraint that the cargo.toml must be located at the root. (Experimental: might not work for certain setups)

- **`rust-client.logToFile`**: `boolean`

  When set to true, RLS stderr is logged to a file at workspace root level. Requires reloading extension after change.

- **`rust-client.nestedMultiRootConfigInOutermost`**: `boolean`

  Default: `true`
  
  If one root workspace folder is nested in another root folder, look for the Rust config in the outermost root.

- **`rust-client.revealOutputChannelOn`**: `enum { "info", "warn", "error", "never" }`

  Default: `"never"`
  
  Specifies message severity on which the output channel will be revealed. Requires reloading extension after change.

- **`rust-client.rlsPath`**: `string|null`

  Default: `vim.NIL`
  
  Override RLS path. Only required for RLS developers. If you set this and use rustup, you should also set `rust-client.channel` to ensure your RLS sees the right libraries. If you don't use rustup, make sure to set `rust-client.disableRustup`.

- **`rust-client.rustupPath`**: `string`

  Default: `"rustup"`
  
  Path to rustup executable. Ignored if rustup is disabled.

- **`rust-client.trace.server`**: `enum { "off", "messages", "verbose" }`

  Default: `"off"`
  
  Traces the communication between VS Code and the Rust language server.

- **`rust-client.updateOnStartup`**: `boolean`

  Update the RLS whenever the extension starts up.

- **`rust-client.useWSL`**: `boolean`

  When set to true, RLS is started within Windows Subsystem for Linux.

- **`rust.all_features`**: `boolean`

  Enable all Cargo features.

- **`rust.all_targets`**: `boolean`

  Default: `true`
  
  Checks the project as if you were running cargo check --all-targets (I.e., check all targets and integration tests too).

- **`rust.build_bin`**: `string|null`

  Default: `vim.NIL`
  
  Specify to run analysis as if running `cargo check --bin <name>`. Use `null` to auto-detect. (unstable)

- **`rust.build_command`**: `string|null`

  Default: `vim.NIL`
  
  EXPERIMENTAL (requires `unstable_features`)
  If set, executes a given program responsible for rebuilding save-analysis to be loaded by the RLS. The program given should output a list of resulting .json files on stdout. 
  Implies `rust.build_on_save`: true.

- **`rust.build_lib`**: `boolean|null`

  Default: `vim.NIL`
  
  Specify to run analysis as if running `cargo check --lib`. Use `null` to auto-detect. (unstable)

- **`rust.build_on_save`**: `boolean`

  Only index the project when a file is saved and not on change.

- **`rust.cfg_test`**: `boolean`

  Build cfg(test) code. (unstable)

- **`rust.clear_env_rust_log`**: `boolean`

  Default: `true`
  
  Clear the RUST_LOG environment variable before running rustc or cargo.

- **`rust.clippy_preference`**: `enum { "on", "opt-in", "off" }`

  Default: `"opt-in"`
  
  Controls eagerness of clippy diagnostics when available. Valid values are (case-insensitive):
   - "off": Disable clippy lints.
   - "on": Display the same diagnostics as command-line clippy invoked with no arguments (`clippy::all` unless overridden).
   - "opt-in": Only display the lints explicitly enabled in the code. Start by adding `#![warn(clippy::all)]` to the root of each crate you want linted.
  You need to install clippy via rustup if you haven't already.

- **`rust.crate_blacklist`**: `array|null`

  Default: `{ "cocoa", "gleam", "glium", "idna", "libc", "openssl", "rustc_serialize", "serde", "serde_json", "typenum", "unicode_normalization", "unicode_segmentation", "winapi" }`
  
  Overrides the default list of packages for which analysis is skipped.
  Available since RLS 1.38

- **`rust.features`**: `array`

  Default: `{}`
  
  A list of Cargo features to enable.

- **`rust.full_docs`**: `boolean|null`

  Default: `vim.NIL`
  
  Instructs cargo to enable full documentation extraction during save-analysis while building the crate.

- **`rust.jobs`**: `number|null`

  Default: `vim.NIL`
  
  Number of Cargo jobs to be run in parallel.

- **`rust.no_default_features`**: `boolean`

  Do not enable default Cargo features.

- **`rust.racer_completion`**: `boolean`

  Default: `true`
  
  Enables code completion using racer.

- **`rust.rustflags`**: `string|null`

  Default: `vim.NIL`
  
  Flags added to RUSTFLAGS.

- **`rust.rustfmt_path`**: `string|null`

  Default: `vim.NIL`
  
  When specified, RLS will use the Rustfmt pointed at the path instead of the bundled one

- **`rust.show_hover_context`**: `boolean`

  Default: `true`
  
  Show additional context in hover tooltips when available. This is often the type local variable declaration.

- **`rust.show_warnings`**: `boolean`

  Default: `true`
  
  Show warnings.

- **`rust.sysroot`**: `string|null`

  Default: `vim.NIL`
  
  --sysroot

- **`rust.target`**: `string|null`

  Default: `vim.NIL`
  
  --target

- **`rust.target_dir`**: `string|null`

  Default: `vim.NIL`
  
  When specified, it places the generated analysis files at the specified target directory. By default it is placed target/rls directory.

- **`rust.unstable_features`**: `boolean`

  Enable unstable features.

- **`rust.wait_to_build`**: `number`

  Default: `1500`
  
  Time in milliseconds between receiving a change notification and starting build.

</details>

```lua
require'nvim_lsp'.rls.setup{}

  Default Values:
    cmd = { "rls" }
    filetypes = { "rust" }
    root_dir = root_pattern("Cargo.toml")
```

## rust_analyzer

https://github.com/rust-analyzer/rust-analyzer

rust-analyzer (aka rls 2.0), a language server for Rust

See [docs](https://github.com/rust-analyzer/rust-analyzer/tree/master/docs/user#settings) for extra settings.
    
This server accepts configuration via the `settings` key.
<details><summary>Available settings:</summary>

- **`rust-analyzer.cargo-watch.allTargets`**: `boolean`

  Default: `true`

- **`rust-analyzer.cargo-watch.arguments`**: `array`

  Default: `{}`
  
  Array items: `{type = "string"}`

- **`rust-analyzer.cargo-watch.command`**: `string`

  Default: `"check"`

- **`rust-analyzer.cargo-watch.enable`**: `boolean`

  Default: `true`

- **`rust-analyzer.cargoFeatures.allFeatures`**: `boolean`

  Default: `true`
  
  Activate all available features

- **`rust-analyzer.cargoFeatures.features`**: `array`

  Default: `{}`
  
  Array items: `{type = "string"}`
  
  List of features to activate

- **`rust-analyzer.cargoFeatures.loadOutDirsFromCheck`**: `boolean`

  

- **`rust-analyzer.cargoFeatures.noDefaultFeatures`**: `boolean`

  

- **`rust-analyzer.excludeGlobs`**: `array`

  Default: `{}`
  
  Array items: `{type = "string"}`
  
  Paths to exclude from analysis

- **`rust-analyzer.featureFlags`**: `object`

  Default: `vim.empty_dict()`
  
  Fine grained feature flags to disable annoying features

- **`rust-analyzer.highlighting.semanticTokens`**: `boolean`

  Use proposed semantic tokens API for syntax highlighting

- **`rust-analyzer.highlightingOn`**: `boolean`

  Highlight Rust code (overrides built-in syntax highlighting)

- **`rust-analyzer.inlayHints.maxLength`**: `null|integer`

  Default: `20`
  
  Maximum length for inlay hints

- **`rust-analyzer.inlayHints.parameterHints`**: `boolean`

  Default: `true`
  
  Whether to show function parameter name inlay hints at the call site

- **`rust-analyzer.inlayHints.typeHints`**: `boolean`

  Default: `true`
  
  Whether to show inlay type hints

- **`rust-analyzer.lruCapacity`**: `null|integer`

  Default: `vim.NIL`
  
  Number of syntax trees rust-analyzer keeps in memory

- **`rust-analyzer.rainbowHighlightingOn`**: `boolean`

  When highlighting Rust code, use a unique color per identifier

- **`rust-analyzer.rustfmtArgs`**: `array`

  Default: `{}`
  
  Array items: `{type = "string"}`
  
  Additional arguments to rustfmt

- **`rust-analyzer.serverPath`**: `null|string`

  Default: `vim.NIL`
  
  Path to rust-analyzer executable (points to bundled binary by default). If this is set, then "rust-analyzer.updates.channel" setting is not used

- **`rust-analyzer.trace.extension`**: `boolean`

  Enable logging of VS Code extensions itself

- **`rust-analyzer.trace.server`**: `enum { "off", "messages", "verbose" }`

  Default: `"off"`
  
  Trace requests to the rust-analyzer

- **`rust-analyzer.updates.askBeforeDownload`**: `boolean`

  Default: `true`
  
  Whether to ask for permission before downloading any files from the Internet

- **`rust-analyzer.updates.channel`**: `enum { "stable", "nightly" }`

  Default: `"stable"`

- **`rust-analyzer.useClientWatching`**: `boolean`

  Default: `true`
  
  client provided file watching instead of notify watching.

</details>

```lua
require'nvim_lsp'.rust_analyzer.setup{}

  Default Values:
    capabilities = {
      offsetEncoding = { "utf-8", "utf-16" },
      textDocument = {
        completion = {
          completionItem = {
            commitCharactersSupport = false,
            deprecatedSupport = false,
            documentationFormat = { "markdown", "plaintext" },
            preselectSupport = false,
            snippetSupport = false
          },
          completionItemKind = {
            valueSet = { 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 }
          },
          contextSupport = false,
          dynamicRegistration = false
        },
        documentHighlight = {
          dynamicRegistration = false
        },
        documentSymbol = {
          dynamicRegistration = false,
          hierarchicalDocumentSymbolSupport = true,
          symbolKind = {
            valueSet = { 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 }
          }
        },
        hover = {
          contentFormat = { "markdown", "plaintext" },
          dynamicRegistration = false
        },
        references = {
          dynamicRegistration = false
        },
        signatureHelp = {
          dynamicRegistration = false,
          signatureInformation = {
            documentationFormat = { "markdown", "plaintext" }
          }
        },
        synchronization = {
          didSave = true,
          dynamicRegistration = false,
          willSave = false,
          willSaveWaitUntil = false
        }
      }
    }
    cmd = { "rust-analyzer" }
    filetypes = { "rust" }
    on_init = <function 1>
    root_dir = root_pattern("Cargo.toml")
```

## solargraph

https://solargraph.org/

solargraph, a language server for Ruby

You can install solargraph via gem install.

```sh
gem install solargraph
```
    
This server accepts configuration via the `settings` key.
<details><summary>Available settings:</summary>

- **`solargraph.autoformat`**: `enum { true, false }`

  Enable automatic formatting while typing (WARNING: experimental)

- **`solargraph.bundlerPath`**: `string`

  Default: `"bundle"`
  
  Path to the bundle executable, defaults to 'bundle'

- **`solargraph.checkGemVersion`**: `enum { true, false }`

  Default: `true`
  
  Automatically check if a new version of the Solargraph gem is available.

- **`solargraph.commandPath`**: `string`

  Default: `"solargraph"`
  
  Path to the solargraph command.  Set this to an absolute path to select from multiple installed Ruby versions.

- **`solargraph.completion`**: `enum { true, false }`

  Default: `true`
  
  Enable completion

- **`solargraph.definitions`**: `enum { true, false }`

  Default: `true`
  
  Enable definitions (go to, etc.)

- **`solargraph.diagnostics`**: `enum { true, false }`

  Enable diagnostics

- **`solargraph.externalServer`**: `object`

  Default: `{host = "localhost",port = 7658}`
  
  The host and port to use for external transports. (Ignored for stdio and socket transports.)

- **`solargraph.folding`**: `boolean`

  Default: `true`
  
  Enable folding ranges

- **`solargraph.formatting`**: `enum { true, false }`

  Enable document formatting

- **`solargraph.hover`**: `enum { true, false }`

  Default: `true`
  
  Enable hover

- **`solargraph.logLevel`**: `enum { "warn", "info", "debug" }`

  Default: `"warn"`
  
  Level of debug info to log. `warn` is least and `debug` is most.

- **`solargraph.references`**: `enum { true, false }`

  Default: `true`
  
  Enable finding references

- **`solargraph.rename`**: `enum { true, false }`

  Default: `true`
  
  Enable symbol renaming

- **`solargraph.symbols`**: `enum { true, false }`

  Default: `true`
  
  Enable symbols

- **`solargraph.transport`**: `enum { "socket", "stdio", "external" }`

  Default: `"socket"`
  
  The type of transport to use.

- **`solargraph.useBundler`**: `boolean`

  Use `bundle exec` to run solargraph. (If this is true, the solargraph.commandPath setting is ignored.)

</details>

```lua
require'nvim_lsp'.solargraph.setup{}

  Default Values:
    cmd = { "solargraph", "stdio" }
    filetypes = { "ruby" }
    root_dir = root_pattern("Gemfile", ".git")
```

## sumneko_lua

https://github.com/sumneko/lua-language-server

Lua language server. **By default, this doesn't have a `cmd` set.** This is
because it doesn't provide a global binary. We provide an installer for Linux
and macOS using `:LspInstall`.  If you wish to install it yourself, [here is a
guide](https://github.com/sumneko/lua-language-server/wiki/Build-and-Run).
So you should set `cmd` yourself like this.

```lua
require'nvim_lsp'.sumneko_lua.setup{
  cmd = {"path", "to", "cmd"};
  ...
}
```

If you install via our installer, if you execute `:LspInstallInfo sumneko_lua`, you can know `cmd` value.

Can be installed in Nvim with `:LspInstall sumneko_lua`
This server accepts configuration via the `settings` key.
<details><summary>Available settings:</summary>

- **`Lua.completion.callSnippet`**: `enum { "Disable", "Both", "Replace" }`

  Default: `"Disable"`

- **`Lua.completion.enable`**: `boolean`

  Default: `true`

- **`Lua.completion.keywordSnippet`**: `enum { "Disable", "Both", "Replace" }`

  Default: `"Replace"`

- **`Lua.develop.debuggerPort`**: `integer`

  Default: `11412`

- **`Lua.develop.debuggerWait`**: `boolean`

  

- **`Lua.develop.enable`**: `boolean`

  

- **`Lua.diagnostics.disable`**: `array`

  Array items: `{type = "string"}`

- **`Lua.diagnostics.enable`**: `boolean`

  Default: `true`

- **`Lua.diagnostics.globals`**: `array`

  Array items: `{type = "string"}`

- **`Lua.diagnostics.severity`**: `object`

  

- **`Lua.runtime.path`**: `array`

  Default: `{ "?.lua", "?/init.lua", "?/?.lua" }`
  
  Array items: `{type = "string"}`

- **`Lua.runtime.version`**: `enum { "Lua 5.1", "Lua 5.2", "Lua 5.3", "Lua 5.4", "LuaJIT" }`

  Default: `"Lua 5.3"`

- **`Lua.workspace.ignoreDir`**: `array`

  Default: `{ ".vscode" }`
  
  Array items: `{type = "string"}`

- **`Lua.workspace.ignoreSubmodules`**: `boolean`

  Default: `true`

- **`Lua.workspace.library`**: `object`

  

- **`Lua.workspace.maxPreload`**: `integer`

  Default: `300`

- **`Lua.workspace.preloadFileSize`**: `integer`

  Default: `100`

- **`Lua.workspace.useGitIgnore`**: `boolean`

  Default: `true`

</details>

```lua
require'nvim_lsp'.sumneko_lua.setup{}

  Default Values:
    filetypes = { "lua" }
    log_level = 2
    root_dir = root_pattern(".git") or os_homedir
```

## terraformls

https://github.com/juliosueiras/terraform-lsp

Terraform language server
You can use [released binary](https://github.com/juliosueiras/terraform-lsp/releases) or [build](https://github.com/juliosueiras/terraform-lsp#building) your own.

This server accepts configuration via the `settings` key.
<details><summary>Available settings:</summary>

- **`terraform.codelens.enabled`**: `boolean`

  Default: `true`
  
  Enable/disable the CodeLens feature

- **`terraform.format`**: `object`

  Default: `{ignoreExtensionsOnSave = { ".tfsmurf" }}`
  
  Formatting settings

- **`terraform.indexing`**: `object`

  Default: `{delay = 500,enabled = true,exclude = { ".terraform/**/*", "**/.terraform/**/*" },liveIndexing = false}`
  
  Indexes all terraform sources to get live syntax errors, rename support, go to symbol, and much more...

- **`terraform.languageServer`**: `object`

  Default: `{args = {},enabled = false}`
  
  Configures how the language server runs and works

- **`terraform.lintConfig`**: `string|null`

  Default: `vim.NIL`
  
  Path to the `tflint` config file.

- **`terraform.lintPath`**: `string`

  Default: `"tflint"`
  
  Path to the `tflint` executable.

- **`terraform.path`**: `string`

  Default: `"terraform"`
  
  Path to the `terraform` executable

- **`terraform.paths`**: `array`

  Default: `{}`
  
  List of terraform paths or paths with versions

- **`terraform.telemetry.enabled`**: `boolean`

  Default: `true`
  
  Enable/disable telemetry reporting for this plugin. The global `telemetry.enableTelemetry` is also respected. If the global is disabled, this setting has no effect.

- **`terraform.templateDirectory`**: `string`

  Default: `"templates"`
  
  A relative path to where your templates are stored relative to the workspace root.

</details>

```lua
require'nvim_lsp'.terraformls.setup{}

  Default Values:
    cmd = { "terraform-lsp" }
    filetypes = { "terraform" }
    root_dir = root_pattern(".git")
```

## texlab

https://texlab.netlify.com/

A completion engine built from scratch for (La)TeX.

See https://texlab.netlify.com/docs/reference/configuration for configuration options.


```lua
require'nvim_lsp'.texlab.setup{}

  Commands:
  - TexlabBuild: Build the current buffer
  
  Default Values:
    cmd = { "texlab" }
    filetypes = { "tex", "bib" }
    root_dir = vim's starting directory
    settings = {
      bibtex = {
        formatting = {
          lineLength = 120
        }
      },
      latex = {
        build = {
          args = { "-pdf", "-interaction=nonstopmode", "-synctex=1" },
          executable = "latexmk",
          onSave = false
        },
        forwardSearch = {
          args = {},
          onSave = false
        },
        lint = {
          onChange = false
        }
      }
    }
```

## tsserver

https://github.com/theia-ide/typescript-language-server

`typescript-language-server` can be installed via `:LspInstall tsserver` or by yourself with `npm`:
```sh
npm install -g typescript-language-server
```

Can be installed in Nvim with `:LspInstall tsserver`

```lua
require'nvim_lsp'.tsserver.setup{}

  Default Values:
    capabilities = default capabilities, with offsetEncoding utf-8
    cmd = { "typescript-language-server", "--stdio" }
    filetypes = { "javascript", "javascriptreact", "javascript.jsx", "typescript", "typescriptreact", "typescript.tsx" }
    on_init = function to handle changing offsetEncoding
    root_dir = root_pattern("package.json")
```

## vimls


```lua
require'nvim_lsp'.vimls.setup{}

  Default Values:
    cmd = { "vim-language-server", "--stdio" }
    docs = {
      description = "https://github.com/iamcco/vim-language-server\n\nIf you don't want to use Nvim to install it, then you can use:\n```sh\nnpm install -g vim-language-server\n```\n"
    }
    filetypes = { "vim" }
    init_options = {
      diagnostic = {
        enable = true
      },
      indexes = {
        count = 3,
        gap = 100,
        projectRootPatterns = { "runtime", "nvim", ".git", "autoload", "plugin" },
        runtimepath = true
      },
      iskeyword = "@,48-57,_,192-255,-#",
      runtimepath = "",
      suggest = {
        fromRuntimepath = true,
        fromVimruntime = true
      },
      vimruntime = ""
    }
    on_new_config = <function 1>
    root_dir = <function 1>
```

## vuels

https://github.com/vuejs/vetur/tree/master/server

Vue language server(vls)
`vue-language-server` can be installed via `:LspInstall vuels` or by yourself with `npm`:
```sh
npm install -g vls
```

Can be installed in Nvim with `:LspInstall vuels`
This server accepts configuration via the `settings` key.
<details><summary>Available settings:</summary>

- **`vetur.completion.autoImport`**: `boolean`

  Default: `true`
  
  Include completion for module export and auto import them

- **`vetur.completion.scaffoldSnippetSources`**: `object`

  Default: `{user = "🗒️",vetur = "✌",workspace = "💼"}`
  
  Where Vetur source Scaffold Snippets from and how to indicate them. Set a source to "" to disable it.
  
  - workspace: `<WORKSPACE>/.vscode/vetur/snippets`.
  - user: `<USER-DATA-DIR>/User/snippets/vetur`.
  - vetur: Bundled in Vetur.
  
  The default is:
  ```
  "vetur.completion.scaffoldSnippetSources": {
    "workspace": "💼",
    "user": "🗒️",
    "vetur": "✌"
  }
  ```
  
  Alternatively, you can do:
  
  ```
  "vetur.completion.scaffoldSnippetSources": {
    "workspace": "(W)",
    "user": "(U)",
    "vetur": "(V)"
  }
  ```
  
  Read more: https://vuejs.github.io/vetur/snippet.html.

- **`vetur.completion.tagCasing`**: `enum { "initial", "kebab" }`

  Default: `"kebab"`
  
  Casing conversion for tag completion

- **`vetur.dev.logLevel`**: `enum { "INFO", "DEBUG" }`

  Default: `"INFO"`
  
  Log level for VLS

- **`vetur.dev.vlsPath`**: `string`

  Path to VLS for Vetur developers. There are two ways of using it. 
  
  1. Clone vuejs/vetur from GitHub, build it and point it to the ABSOLUTE path of `/server`.
  2. `yarn global add vue-language-server` and point Vetur to the installed location (`yarn global dir` + node_modules/vue-language-server)

- **`vetur.dev.vlsPort`**: `number`

  Default: `-1`
  
  The port that VLS listens to. Can be used for attaching to the VLS Node process for debugging / profiling.

- **`vetur.experimental.templateInterpolationService`**: `boolean`

  Enable template interpolation service that offers diagnostics / hover / definition / references.

- **`vetur.format.defaultFormatter.css`**: `enum { "none", "prettier" }`

  Default: `"prettier"`
  
  Default formatter for <style> region

- **`vetur.format.defaultFormatter.html`**: `enum { "none", "prettyhtml", "js-beautify-html", "prettier" }`

  Default: `"prettyhtml"`
  
  Default formatter for <template> region

- **`vetur.format.defaultFormatter.js`**: `enum { "none", "prettier", "prettier-eslint", "vscode-typescript" }`

  Default: `"prettier"`
  
  Default formatter for <script> region

- **`vetur.format.defaultFormatter.less`**: `enum { "none", "prettier" }`

  Default: `"prettier"`
  
  Default formatter for <style lang='less'> region

- **`vetur.format.defaultFormatter.postcss`**: `enum { "none", "prettier" }`

  Default: `"prettier"`
  
  Default formatter for <style lang='postcss'> region

- **`vetur.format.defaultFormatter.sass`**: `enum { "none", "sass-formatter" }`

  Default: `"sass-formatter"`
  
  Default formatter for <style lang='sass'> region

- **`vetur.format.defaultFormatter.scss`**: `enum { "none", "prettier" }`

  Default: `"prettier"`
  
  Default formatter for <style lang='scss'> region

- **`vetur.format.defaultFormatter.stylus`**: `enum { "none", "stylus-supremacy" }`

  Default: `"stylus-supremacy"`
  
  Default formatter for <style lang='stylus'> region

- **`vetur.format.defaultFormatter.ts`**: `enum { "none", "prettier", "prettier-tslint", "vscode-typescript" }`

  Default: `"prettier"`
  
  Default formatter for <script> region

- **`vetur.format.defaultFormatterOptions`**: `object`

  Default: `{["js-beautify-html"] = {wrap_attributes = "force-expand-multiline"},prettyhtml = {printWidth = 100,singleQuote = false,sortAttributes = false,wrapAttributes = false}}`
  
  Options for all default formatters

- **`vetur.format.enable`**: `boolean`

  Default: `true`
  
  Enable/disable the Vetur document formatter.

- **`vetur.format.options.tabSize`**: `number`

  Default: `2`
  
  Number of spaces per indentation level. Inherited by all formatters.

- **`vetur.format.options.useTabs`**: `boolean`

  Use tabs for indentation. Inherited by all formatters.

- **`vetur.format.scriptInitialIndent`**: `boolean`

  Whether to have initial indent for <script> region

- **`vetur.format.styleInitialIndent`**: `boolean`

  Whether to have initial indent for <style> region

- **`vetur.grammar.customBlocks`**: `object`

  Default: `{docs = "md",i18n = "json"}`
  
  Mapping from custom block tag name to language name. Used for generating grammar to support syntax highlighting for custom blocks.

- **`vetur.trace.server`**: `enum { "off", "messages", "verbose" }`

  Default: `"off"`
  
  Traces the communication between VS Code and Vue Language Server.

- **`vetur.useWorkspaceDependencies`**: `boolean`

  Use dependencies from workspace. Currently only for TypeScript.

- **`vetur.validation.script`**: `boolean`

  Default: `true`
  
  Validate js/ts in <script>

- **`vetur.validation.style`**: `boolean`

  Default: `true`
  
  Validate css/scss/less/postcss in <style>

- **`vetur.validation.template`**: `boolean`

  Default: `true`
  
  Validate vue-html in <template> using eslint-plugin-vue

</details>

```lua
require'nvim_lsp'.vuels.setup{}

  Default Values:
    cmd = { "vls" }
    filetypes = { "vue" }
    init_options = {
      config = {
        css = {},
        emmet = {},
        html = {
          suggest = {}
        },
        javascript = {
          format = {}
        },
        stylusSupremacy = {},
        typescript = {
          format = {}
        },
        vetur = {
          completion = {
            autoImport = false,
            tagCasing = "kebab",
            useScaffoldSnippets = false
          },
          format = {
            defaultFormatter = {
              js = "none",
              ts = "none"
            },
            defaultFormatterOptions = {},
            scriptInitialIndent = false,
            styleInitialIndent = false
          },
          useWorkspaceDependencies = false,
          validation = {
            script = true,
            style = true,
            template = true
          }
        }
      }
    }
    root_dir = root_pattern("package.json", "vue.config.js")
```

## yamlls

https://github.com/redhat-developer/yaml-language-server

`yaml-language-server` can be installed via `:LspInstall yamlls` or by yourself with `npm`:
```sh
npm install -g yaml-language-server
```

Can be installed in Nvim with `:LspInstall yamlls`
This server accepts configuration via the `settings` key.
<details><summary>Available settings:</summary>

- **`yaml.completion`**: `boolean`

  Default: `true`
  
  Enable/disable completion feature

- **`yaml.customTags`**: `array`

  Default: `{}`
  
  Custom tags for the parser to use

- **`yaml.format.bracketSpacing`**: `boolean`

  Default: `true`
  
  Print spaces between brackets in objects

- **`yaml.format.enable`**: `boolean`

  Default: `true`
  
  Enable/disable default YAML formatter

- **`yaml.format.printWidth`**: `integer`

  Default: `80`
  
  Specify the line length that the printer will wrap on

- **`yaml.format.proseWrap`**: `enum { "preserve", "never", "always" }`

  Default: `"preserve"`
  
  Always: wrap prose if it exeeds the print width, Never: never wrap the prose, Preserve: wrap prose as-is

- **`yaml.format.singleQuote`**: `boolean`

  Use single quotes instead of double quotes

- **`yaml.hover`**: `boolean`

  Default: `true`
  
  Enable/disable hover feature

- **`yaml.schemaStore.enable`**: `boolean`

  Default: `true`
  
  Automatically pull available YAML schemas from JSON Schema Store

- **`yaml.schemas`**: `object`

  Default: `vim.empty_dict()`
  
  Associate schemas to YAML files in the current workspace

- **`yaml.trace.server`**: `enum { "off", "messages", "verbose" }`

  Default: `"off"`
  
  Traces the communication between VSCode and the YAML language service.

- **`yaml.validate`**: `boolean`

  Default: `true`
  
  Enable/disable validation feature

</details>

```lua
require'nvim_lsp'.yamlls.setup{}

  Default Values:
    capabilities = {
      offsetEncoding = { "utf-8", "utf-16" },
      textDocument = {
        completion = {
          completionItem = {
            commitCharactersSupport = false,
            deprecatedSupport = false,
            documentationFormat = { "markdown", "plaintext" },
            preselectSupport = false,
            snippetSupport = false
          },
          completionItemKind = {
            valueSet = { 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 }
          },
          contextSupport = false,
          dynamicRegistration = false
        },
        documentHighlight = {
          dynamicRegistration = false
        },
        documentSymbol = {
          dynamicRegistration = false,
          hierarchicalDocumentSymbolSupport = true,
          symbolKind = {
            valueSet = { 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 }
          }
        },
        hover = {
          contentFormat = { "markdown", "plaintext" },
          dynamicRegistration = false
        },
        references = {
          dynamicRegistration = false
        },
        signatureHelp = {
          dynamicRegistration = false,
          signatureInformation = {
            documentationFormat = { "markdown", "plaintext" }
          }
        },
        synchronization = {
          didSave = true,
          dynamicRegistration = false,
          willSave = false,
          willSaveWaitUntil = false
        }
      }
    }
    cmd = { "yaml-language-server", "--stdio" }
    filetypes = { "yaml" }
    on_init = <function 1>
    root_dir = root_pattern(".git", vim.fn.getcwd())
```