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[bot] committed Jun 2, 2024
1 parent 6dfb246 commit 74e1480
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 0 deletions.
45 changes: 45 additions & 0 deletions doc/server_configurations.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [facility_language_server](#facility_language_server)
- [fennel_language_server](#fennel_language_server)
- [fennel_ls](#fennel_ls)
- [fish_lsp](#fish_lsp)
- [flow](#flow)
- [flux_lsp](#flux_lsp)
- [foam_ls](#foam_ls)
Expand Down Expand Up @@ -3935,6 +3936,50 @@ require'lspconfig'.fennel_ls.setup{}
```


## fish_lsp

https://github.com/ndonfris/fish-lsp

A Language Server Protocol (LSP) tailored for the fish shell.
This project aims to enhance the coding experience for fish,
by introducing a suite of intelligent features like auto-completion,
scope aware symbol analysis, per-token hover generation, and many others.

[homepage](https://www.fish-lsp.dev/)



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


**Default values:**
- `cmd` :
```lua
{ "fish-lsp", "start" }
```
- `cmd_env` :
```lua
{
fish_lsp_show_client_popups = false
}
```
- `filetypes` :
```lua
{ "fish" }
```
- `root_dir` :
```lua
util.find_git_ancestor
```
- `single_file_support` :
```lua
true
```


## flow

https://flow.org/
Expand Down
45 changes: 45 additions & 0 deletions doc/server_configurations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [facility_language_server](#facility_language_server)
- [fennel_language_server](#fennel_language_server)
- [fennel_ls](#fennel_ls)
- [fish_lsp](#fish_lsp)
- [flow](#flow)
- [flux_lsp](#flux_lsp)
- [foam_ls](#foam_ls)
Expand Down Expand Up @@ -3935,6 +3936,50 @@ require'lspconfig'.fennel_ls.setup{}
```


## fish_lsp

https://github.com/ndonfris/fish-lsp

A Language Server Protocol (LSP) tailored for the fish shell.
This project aims to enhance the coding experience for fish,
by introducing a suite of intelligent features like auto-completion,
scope aware symbol analysis, per-token hover generation, and many others.

[homepage](https://www.fish-lsp.dev/)



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


**Default values:**
- `cmd` :
```lua
{ "fish-lsp", "start" }
```
- `cmd_env` :
```lua
{
fish_lsp_show_client_popups = false
}
```
- `filetypes` :
```lua
{ "fish" }
```
- `root_dir` :
```lua
util.find_git_ancestor
```
- `single_file_support` :
```lua
true
```


## flow

https://flow.org/
Expand Down

0 comments on commit 74e1480

Please sign in to comment.