diff options
| author | Github Actions <actions@github> | 2021-01-05 22:50:59 +0000 |
|---|---|---|
| committer | Github Actions <actions@github> | 2021-01-05 22:50:59 +0000 |
| commit | 391522a8a426c1e1bfab86ffc89489ecc265f18e (patch) | |
| tree | 70d2492e93213878bffd81ab37548caaf7f20ca2 | |
| parent | Merge pull request #543 from oberblastmeister/master (diff) | |
| download | nvim-lspconfig-391522a8a426c1e1bfab86ffc89489ecc265f18e.tar nvim-lspconfig-391522a8a426c1e1bfab86ffc89489ecc265f18e.tar.gz nvim-lspconfig-391522a8a426c1e1bfab86ffc89489ecc265f18e.tar.bz2 nvim-lspconfig-391522a8a426c1e1bfab86ffc89489ecc265f18e.tar.lz nvim-lspconfig-391522a8a426c1e1bfab86ffc89489ecc265f18e.tar.xz nvim-lspconfig-391522a8a426c1e1bfab86ffc89489ecc265f18e.tar.zst nvim-lspconfig-391522a8a426c1e1bfab86ffc89489ecc265f18e.zip | |
[docgen] Update README.md
skip-checks: true
| -rw-r--r-- | CONFIG.md | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -14,6 +14,7 @@ that config. - [cssls](#cssls) - [dartls](#dartls) - [denols](#denols) +- [dhall_lsp_server](#dhall_lsp_server) - [diagnosticls](#diagnosticls) - [dockerls](#dockerls) - [efm](#efm) @@ -1408,6 +1409,26 @@ require'lspconfig'.denols.setup{} root_dir = root_pattern("package.json", "tsconfig.json", ".git") ``` +## dhall_lsp_server + + +```lua +require'lspconfig'.dhall_lsp_server.setup{} + + Commands: + + Default Values: + cmd = { "dhall-lsp-server" } + docs = { + default_config = { + root_dir = 'root_pattern(".git", vim.fn.getcwd())' + }, + description = "https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-lsp-server\n\nlanguage server for dhall\n\n`dhall-lsp-server` can be installed via cabal:\n```sh\ncabal install dhall-lsp-server\n```\nprebuilt binaries can be found [here](https://github.com/dhall-lang/dhall-haskell/releases).\n" + } + filetypes = { "dhall" } + root_dir = <function 1> +``` + ## diagnosticls https://github.com/iamcco/diagnostic-languageserver |
