diff options
author | w0rp <w0rp@users.noreply.github.com> | 2018-11-04 10:10:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-04 10:10:25 +0000 |
commit | 93180239b9f5bf3d22d28eea2fc7b6d6a3aca09f (patch) | |
tree | 0d06e8ada638ab2a1c31c9c5e6e29e35685e2932 /doc | |
parent | 4b841b55869e3ec5b02806f9b2fe962ffdca2750 (diff) | |
parent | 4bee0f1743d611ca1e6e338d4cb48417f4162f0b (diff) | |
download | ale-93180239b9f5bf3d22d28eea2fc7b6d6a3aca09f.zip |
Merge pull request #2042 from jparise/elixir-ls-config
Add configuration dictionary support to elixir-ls
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ale-elixir.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/ale-elixir.txt b/doc/ale-elixir.txt index 769842a4..30ec3be1 100644 --- a/doc/ale-elixir.txt +++ b/doc/ale-elixir.txt @@ -53,5 +53,20 @@ g:ale_elixir_elixir_ls_release *g:ale_elixir_elixir_ls_release* Location of the elixir-ls release directory. This directory must contain the language server scripts (language_server.sh and language_server.bat). +g:ale_elixir_elixir_ls_config *g:ale_elixir_elixir_ls_config* + *b:ale_elixir_elixir_ls_config* + Type: |Dictionary| + Default: `{}` + + Dictionary containing configuration settings that will be passed to the + language server. For example, to disable Dialyzer: > + { + \ 'elixirLS': { + \ 'dialyzerEnabled': v:false, + \ }, + \ } +< + Consult the ElixirLS documentation for more information about settings. + =============================================================================== vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: |