Skip to content

Commit 74e1480

Browse files
docs: update server_configurations.md
skip-checks: true
1 parent 6dfb246 commit 74e1480

File tree

2 files changed

+90
-0
lines changed

2 files changed

+90
-0
lines changed

doc/server_configurations.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
9090
- [facility_language_server](#facility_language_server)
9191
- [fennel_language_server](#fennel_language_server)
9292
- [fennel_ls](#fennel_ls)
93+
- [fish_lsp](#fish_lsp)
9394
- [flow](#flow)
9495
- [flux_lsp](#flux_lsp)
9596
- [foam_ls](#foam_ls)
@@ -3935,6 +3936,50 @@ require'lspconfig'.fennel_ls.setup{}
39353936
```
39363937

39373938

3939+
## fish_lsp
3940+
3941+
https://github.com/ndonfris/fish-lsp
3942+
3943+
A Language Server Protocol (LSP) tailored for the fish shell.
3944+
This project aims to enhance the coding experience for fish,
3945+
by introducing a suite of intelligent features like auto-completion,
3946+
scope aware symbol analysis, per-token hover generation, and many others.
3947+
3948+
[homepage](https://www.fish-lsp.dev/)
3949+
3950+
3951+
3952+
**Snippet to enable the language server:**
3953+
```lua
3954+
require'lspconfig'.fish_lsp.setup{}
3955+
```
3956+
3957+
3958+
**Default values:**
3959+
- `cmd` :
3960+
```lua
3961+
{ "fish-lsp", "start" }
3962+
```
3963+
- `cmd_env` :
3964+
```lua
3965+
{
3966+
fish_lsp_show_client_popups = false
3967+
}
3968+
```
3969+
- `filetypes` :
3970+
```lua
3971+
{ "fish" }
3972+
```
3973+
- `root_dir` :
3974+
```lua
3975+
util.find_git_ancestor
3976+
```
3977+
- `single_file_support` :
3978+
```lua
3979+
true
3980+
```
3981+
3982+
39383983
## flow
39393984

39403985
https://flow.org/

doc/server_configurations.txt

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
9090
- [facility_language_server](#facility_language_server)
9191
- [fennel_language_server](#fennel_language_server)
9292
- [fennel_ls](#fennel_ls)
93+
- [fish_lsp](#fish_lsp)
9394
- [flow](#flow)
9495
- [flux_lsp](#flux_lsp)
9596
- [foam_ls](#foam_ls)
@@ -3935,6 +3936,50 @@ require'lspconfig'.fennel_ls.setup{}
39353936
```
39363937

39373938

3939+
## fish_lsp
3940+
3941+
https://github.com/ndonfris/fish-lsp
3942+
3943+
A Language Server Protocol (LSP) tailored for the fish shell.
3944+
This project aims to enhance the coding experience for fish,
3945+
by introducing a suite of intelligent features like auto-completion,
3946+
scope aware symbol analysis, per-token hover generation, and many others.
3947+
3948+
[homepage](https://www.fish-lsp.dev/)
3949+
3950+
3951+
3952+
**Snippet to enable the language server:**
3953+
```lua
3954+
require'lspconfig'.fish_lsp.setup{}
3955+
```
3956+
3957+
3958+
**Default values:**
3959+
- `cmd` :
3960+
```lua
3961+
{ "fish-lsp", "start" }
3962+
```
3963+
- `cmd_env` :
3964+
```lua
3965+
{
3966+
fish_lsp_show_client_popups = false
3967+
}
3968+
```
3969+
- `filetypes` :
3970+
```lua
3971+
{ "fish" }
3972+
```
3973+
- `root_dir` :
3974+
```lua
3975+
util.find_git_ancestor
3976+
```
3977+
- `single_file_support` :
3978+
```lua
3979+
true
3980+
```
3981+
3982+
39383983
## flow
39393984

39403985
https://flow.org/

0 commit comments

Comments
 (0)