Skip to content

Commit

Permalink
docs: update server_configurations.md
Browse files Browse the repository at this point in the history
skip-checks: true
  • Loading branch information
github-actions committed Mar 8, 2022
1 parent 23de2b4 commit 858fc0e
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 0 deletions.
35 changes: 35 additions & 0 deletions doc/server_configurations.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ that config. This file is accessible in neovim via `:help lspconfig-server-confi
- [perlnavigator](#perlnavigator)
- [perlpls](#perlpls)
- [phpactor](#phpactor)
- [please](#please)
- [powershell_es](#powershell_es)
- [prismals](#prismals)
- [psalm](#psalm)
Expand Down Expand Up @@ -397,6 +398,11 @@ require'lspconfig'.awk_ls.setup{}

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

`bash-language-server` can be installed via `npm`:
```sh
npm i -g bash-language-server
```

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


Expand Down Expand Up @@ -3237,6 +3243,35 @@ require'lspconfig'.phpactor.setup{}
```


## please

https://github.com/thought-machine/please

High-performance extensible build system for reproducible multi-language builds.

The `plz` binary will automatically install the LSP for you on first run



**Snippet to enable the language server:**
```lua
require'lspconfig'.please.setup{}
```

**Commands and default values:**
```lua
Commands:

Default Values:
cmd = { "plz", "tool", "lps" }
filetypes = { "bzl" }
root_dir = function(startpath)
return M.search_ancestors(startpath, matcher)
end
single_file_support = true
```


## powershell_es

https://github.com/PowerShell/PowerShellEditorServices
Expand Down
35 changes: 35 additions & 0 deletions doc/server_configurations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ that config. This file is accessible in neovim via `:help lspconfig-server-confi
- [perlnavigator](#perlnavigator)
- [perlpls](#perlpls)
- [phpactor](#phpactor)
- [please](#please)
- [powershell_es](#powershell_es)
- [prismals](#prismals)
- [psalm](#psalm)
Expand Down Expand Up @@ -397,6 +398,11 @@ require'lspconfig'.awk_ls.setup{}

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

`bash-language-server` can be installed via `npm`:
```sh
npm i -g bash-language-server
```

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


Expand Down Expand Up @@ -3237,6 +3243,35 @@ require'lspconfig'.phpactor.setup{}
```


## please

https://github.com/thought-machine/please

High-performance extensible build system for reproducible multi-language builds.

The `plz` binary will automatically install the LSP for you on first run



**Snippet to enable the language server:**
```lua
require'lspconfig'.please.setup{}
```

**Commands and default values:**
```lua
Commands:

Default Values:
cmd = { "plz", "tool", "lps" }
filetypes = { "bzl" }
root_dir = function(startpath)
return M.search_ancestors(startpath, matcher)
end
single_file_support = true
```


## powershell_es

https://github.com/PowerShell/PowerShellEditorServices
Expand Down

0 comments on commit 858fc0e

Please sign in to comment.