diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-02-09 02:24:55 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-02-09 02:24:55 +0000 |
| commit | f12f1b9e877b1e6e2ef7eae1a524d8253af4243d (patch) | |
| tree | 60cab117a76a16f0fb2e214fd58aacc16eb074aa | |
| parent | feat: add harper_ls support (#3001) (diff) | |
| download | nvim-lspconfig-f12f1b9e877b1e6e2ef7eae1a524d8253af4243d.tar nvim-lspconfig-f12f1b9e877b1e6e2ef7eae1a524d8253af4243d.tar.gz nvim-lspconfig-f12f1b9e877b1e6e2ef7eae1a524d8253af4243d.tar.bz2 nvim-lspconfig-f12f1b9e877b1e6e2ef7eae1a524d8253af4243d.tar.lz nvim-lspconfig-f12f1b9e877b1e6e2ef7eae1a524d8253af4243d.tar.xz nvim-lspconfig-f12f1b9e877b1e6e2ef7eae1a524d8253af4243d.tar.zst nvim-lspconfig-f12f1b9e877b1e6e2ef7eae1a524d8253af4243d.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 35 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 35 |
2 files changed, 70 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 09f4b147..94eeb1a9 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -103,6 +103,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [graphql](#graphql) - [groovyls](#groovyls) - [guile_ls](#guile_ls) +- [harper_ls](#harper_ls) - [haxe_language_server](#haxe_language_server) - [hdl_checker](#hdl_checker) - [helm_ls](#helm_ls) @@ -4481,6 +4482,40 @@ require'lspconfig'.guile_ls.setup{} ``` +## harper_ls + +https://github.com/chilipepperhott/harper_ls + +The language server for Harper, the slim, clean language checker for developers. +As of right now, there are no settings to be configured for `harper_ls`. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.harper_ls.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "harper-ls", "--stdio" } + ``` + - `filetypes` : + ```lua + { "markdown", "rust", "typescript", "typescriptreact", "javascript", "python", "go", "c", "cpp", "ruby", "swift", "csharp", "toml", "lua" } + ``` + - `root_dir` : + ```lua + bufdir + ``` + - `single_file_support` : + ```lua + true + ``` + + ## haxe_language_server https://github.com/vshaxe/haxe-language-server diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 09f4b147..94eeb1a9 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -103,6 +103,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [graphql](#graphql) - [groovyls](#groovyls) - [guile_ls](#guile_ls) +- [harper_ls](#harper_ls) - [haxe_language_server](#haxe_language_server) - [hdl_checker](#hdl_checker) - [helm_ls](#helm_ls) @@ -4481,6 +4482,40 @@ require'lspconfig'.guile_ls.setup{} ``` +## harper_ls + +https://github.com/chilipepperhott/harper_ls + +The language server for Harper, the slim, clean language checker for developers. +As of right now, there are no settings to be configured for `harper_ls`. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.harper_ls.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "harper-ls", "--stdio" } + ``` + - `filetypes` : + ```lua + { "markdown", "rust", "typescript", "typescriptreact", "javascript", "python", "go", "c", "cpp", "ruby", "swift", "csharp", "toml", "lua" } + ``` + - `root_dir` : + ```lua + bufdir + ``` + - `single_file_support` : + ```lua + true + ``` + + ## haxe_language_server https://github.com/vshaxe/haxe-language-server |
