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
|
# nvim-lsp
WIP Common configurations for Language Servers.
This repository aims to be a central location to store configurations for
Language Servers which leverage Neovim's built-in LSP client `vim.lsp` as the
client backbone. The `vim.lsp` implementation is made to be customizable and
greatly extensible, but most users just want to get up and going. This
plugin/library is for those people, although it still lets you customize
things as much as you want in addition to the defaults that this provides.
**NOTE**: Requires current Neovim master as of 2019-11-13
**CONTRIBUTIONS ARE WELCOME!**
There's a lot of language servers in the world, and not enough time. See
[`lua/nvim_lsp/*.lua`](https://github.com/neovim/nvim-lsp/blob/master/lua/nvim_lsp/)
for examples and ask us questions in the [Neovim
Gitter](https://gitter.im/neovim/neovim) to help us complete configurations for
*all the LSPs!* Read `CONTRIBUTING.md` for some instructions. NOTE: don't
modify `README.md`; it is auto-generated.
If you don't know where to start, you can pick one that's not in progress or
implemented from [this excellent list compiled by the coc.nvim
contributors](https://github.com/neoclide/coc.nvim/wiki/Language-servers) or
[this other excellent list from the emacs lsp-mode
contributors](https://github.com/emacs-lsp/lsp-mode#supported-languages)
and create a new file under `lua/nvim_lsp/SERVER_NAME.lua`. We recommend
looking at `lua/nvim_lsp/texlab.lua` for the most extensive example, but all of
them are good references.
## Progress
Implemented language servers:
- [bashls](#bashls)
- [ccls](#ccls)
- [clangd](#clangd)
- [cssls](#cssls)
- [elmls](#elmls)
- [flow](#flow)
- [fortls](#fortls)
- [gopls](#gopls)
- [hie](#hie)
- [pyls](#pyls)
- [rls](#rls)
- [solargraph](#solargraph)
- [sumneko_lua](#sumneko_lua)
- [texlab](#texlab)
- [tsserver](#tsserver)
Planned servers to implement (by me, but contributions welcome anyway):
- [lua-language-server](https://github.com/sumneko/lua-language-server)
- [rust-analyzer](https://github.com/rust-analyzer/rust-analyzer)
In progress:
- ...
## Install
`Plug 'neovim/nvim-lsp'`
## Usage
Servers configurations can be set up with a "setup function." These are
functions to set up servers more easily with some server specific defaults and
more server specific things like commands or different diagnostics.
The "setup functions" are `call nvim_lsp#setup({name}, {config})` from vim and
`nvim_lsp[name].setup(config)` from Lua.
Servers may define extra functions on the `nvim_lsp.SERVER` table, e.g.
`nvim_lsp.texlab.buf_build({bufnr})`.
### Auto Installation
Many servers can be automatically installed with the `:LspInstall`
command. Detailed installation info can be found
with the `:LspInstallInfo` command, which optionally accepts a specific server name.
For example:
```vim
LspInstall elmls
silent LspInstall elmls " useful if you want to autoinstall in init.vim
LspInstallInfo
LspInstallInfo elmls
```
### Example
From vim:
```vim
call nvim_lsp#setup("texlab", {})
```
From Lua:
```lua
require 'nvim_lsp'.texlab.setup {
name = "texlab_fancy";
log_level = vim.lsp.protocol.MessageType.Log;
settings = {
latex = {
build = {
onSave = true;
}
}
}
}
local nvim_lsp = require 'nvim_lsp'
-- Customize how to find the root_dir
nvim_lsp.gopls.setup {
root_dir = nvim_lsp.util.root_pattern(".git");
}
-- Build the current buffer.
require 'nvim_lsp'.texlab.buf_build(0)
```
### Setup function details
The main setup signature will be:
```
nvim_lsp.SERVER.setup({config})
{config} is the same as |vim.lsp.start_client()|, but with some
additions and changes:
{root_dir}
May be required (depending on the server).
`function(filename, bufnr)` which is called on new candidate buffers to
attach to and 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"
- More specific utilities:
- |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}
A set of filetypes to filter for consideration by {root_dir}.
Can be left empty.
A server may specify a default value.
{log_level}
controls the level of logs to show from build processes and other
window/logMessage events. By default it is set to
vim.lsp.protocol.MessageType.Warning instead of
vim.lsp.protocol.MessageType.Log.
{settings}
This is a table, and the keys are case sensitive. This is for the
`workspace/configuration` event responses.
We also notify the server *once* on `initialize` with
`workspace/didChangeConfiguration`.
If you change the settings later on, you should send the notification
yourself with `client.workspace_did_change_configuration({settings})`
Example: `settings = { keyName = { subKey = 1 } }`
{on_attach}
`function(client)` will be executed with the current buffer as the
one the {client} is being attaching to. This is different from
|vim.lsp.start_client()|'s on_attach parameter, which passes the {bufnr} as
the second parameter instead. This is useful for running buffer local
commands.
{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()|.
```
# LSP Implementations
## bashls
https://github.com/mads-hartmann/bash-language-server
Language server for bash, written using tree sitter in typescript.
Can be installed in neovim with `:LspInstall bashls`
```lua
nvim_lsp.bashls.setup({config})
nvim_lsp#setup("bashls", {config})
Default Values:
cmd = { "bash-language-server", "start" }
filetypes = { "sh" }
log_level = 2
root_dir = vim's starting directory
settings = {}
```
## 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.
```lua
nvim_lsp.ccls.setup({config})
nvim_lsp#setup("ccls", {config})
Default Values:
capabilities = default capabilities, with offsetEncoding utf-8
cmd = { "ccls" }
filetypes = { "c", "cpp", "objc", "objcpp" }
log_level = 2
on_init = function to handle changing offsetEncoding
root_dir = root_pattern("compile_commands.json", "compile_flags.txt", ".git")
settings = {}
```
## 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
nvim_lsp.clangd.setup({config})
nvim_lsp#setup("clangd", {config})
Default Values:
capabilities = default capabilities, with offsetEncoding utf-8
cmd = { "clangd", "--background-index" }
filetypes = { "c", "cpp", "objc", "objcpp" }
log_level = 2
on_init = function to handle changing offsetEncoding
root_dir = root_pattern("compile_commands.json", "compile_flags.txt", ".git")
settings = {}
```
## 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 neovim with `:LspInstall cssls`
```lua
nvim_lsp.cssls.setup({config})
nvim_lsp#setup("cssls", {config})
Default Values:
capabilities = default capabilities, with offsetEncoding utf-8
cmd = { "css-languageserver", "--stdio" }
filetypes = { "css", "scss", "less" }
log_level = 2
on_init = function to handle changing offsetEncoding
root_dir = root_pattern("package.json")
settings = {
css = {
validate = true
},
less = {
validate = true
},
scss = {
validate = true
}
}
```
## elmls
https://github.com/elm-tooling/elm-language-server#installation
If you don't want to use neovim 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 neovim with `:LspInstall elmls`
```lua
nvim_lsp.elmls.setup({config})
nvim_lsp#setup("elmls", {config})
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"
}
log_level = 2
on_init = function to handle changing offsetEncoding
root_dir = root_pattern("elm.json")
settings = {}
```
## 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
```
```lua
nvim_lsp.flow.setup({config})
nvim_lsp#setup("flow", {config})
Default Values:
cmd = { "npm", "run", "flow", "lsp" }
filetypes = { "javascript", "javascriptreact", "javascript.jsx" }
log_level = 2
root_dir = root_pattern(".flowconfig")
settings = {}
```
## fortls
https://github.com/hansec/fortran-language-server
Fortran Language Server for the Language Server Protocol
```lua
nvim_lsp.fortls.setup({config})
nvim_lsp#setup("fortls", {config})
Default Values:
cmd = { "fortls" }
filetypes = { "fortran" }
log_level = 2
root_dir = root_pattern(".fortls")
settings = {
nthreads = 1
}
```
## gopls
https://github.com/golang/tools/tree/master/gopls
Google's lsp server for golang.
```lua
nvim_lsp.gopls.setup({config})
nvim_lsp#setup("gopls", {config})
Default Values:
cmd = { "gopls" }
filetypes = { "go" }
log_level = 2
root_dir = root_pattern("go.mod", ".git")
settings = {}
```
## 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", "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.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
nvim_lsp.hie.setup({config})
nvim_lsp#setup("hie", {config})
Default Values:
cmd = { "hie-wrapper" }
filetypes = { "haskell" }
log_level = 2
root_dir = root_pattern("stack.yaml", "package.yaml", ".git")
settings = {}
```
## 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
nvim_lsp.pyls.setup({config})
nvim_lsp#setup("pyls", {config})
Default Values:
cmd = { "pyls" }
filetypes = { "python" }
log_level = 2
root_dir = vim's starting directory
settings = {}
```
## rls
https://github.com/rust-lang/rls
rls, a language server for Rust
Refer to the following for how to setup rls itself.
https://github.com/rust-lang/rls#setup
See below for rls specific settings.
https://github.com/rust-lang/rls#configuration
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
nvim_lsp.rls.setup({config})
nvim_lsp#setup("rls", {config})
Default Values:
cmd = { "rls" }
filetypes = { "rust" }
log_level = 2
root_dir = root_pattern("Cargo.toml")
settings = {}
```
## 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
nvim_lsp.solargraph.setup({config})
nvim_lsp#setup("solargraph", {config})
Default Values:
cmd = { "solargraph", "stdio" }
filetypes = { "ruby" }
log_level = 2
root_dir = root_pattern("Gemfile", ".git")
settings = {}
```
## 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
using `:LspInstall`. If you wish to install it yourself, [here is a
guide](https://github.com/sumneko/lua-language-server/wiki/Build-and-Run).
Can be installed in neovim 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.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`
- **`Lua.zzzzzz.cat`**: `boolean`
</details>
```lua
nvim_lsp.sumneko_lua.setup({config})
nvim_lsp#setup("sumneko_lua", {config})
Default Values:
filetypes = { "lua" }
log_level = 2
root_dir = root_pattern(".git") or os_homedir
settings = {}
```
## 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
nvim_lsp.texlab.setup({config})
nvim_lsp#setup("texlab", {config})
Commands:
- TexlabBuild: Build the current buffer
Default Values:
cmd = { "texlab" }
filetypes = { "tex", "bib" }
log_level = 2
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 neovim with `:LspInstall tsserver`
```lua
nvim_lsp.tsserver.setup({config})
nvim_lsp#setup("tsserver", {config})
Default Values:
capabilities = default capabilities, with offsetEncoding utf-8
cmd = { "typescript-language-server", "--stdio" }
filetypes = { "javascript", "javascriptreact", "javascript.jsx", "typescript", "typescriptreact", "typescript.tsx" }
log_level = 2
on_init = function to handle changing offsetEncoding
root_dir = root_pattern("package.json")
settings = {}
```
|