aboutsummaryrefslogtreecommitdiffstats
path: root/CONFIG.md
diff options
context:
space:
mode:
authorgithub-actions <github-actions@github.com>2021-10-22 08:44:57 +0000
committergithub-actions <github-actions@github.com>2021-10-22 08:44:57 +0000
commit2fb4b6a2f3188f12bad5196e1978528d8bd1c733 (patch)
tree3b4093fe8c27664befc8fd831ab7bca7c613b239 /CONFIG.md
parentfeat: add fstar language server (#1280) (diff)
downloadnvim-lspconfig-2fb4b6a2f3188f12bad5196e1978528d8bd1c733.tar
nvim-lspconfig-2fb4b6a2f3188f12bad5196e1978528d8bd1c733.tar.gz
nvim-lspconfig-2fb4b6a2f3188f12bad5196e1978528d8bd1c733.tar.bz2
nvim-lspconfig-2fb4b6a2f3188f12bad5196e1978528d8bd1c733.tar.lz
nvim-lspconfig-2fb4b6a2f3188f12bad5196e1978528d8bd1c733.tar.xz
nvim-lspconfig-2fb4b6a2f3188f12bad5196e1978528d8bd1c733.tar.zst
nvim-lspconfig-2fb4b6a2f3188f12bad5196e1978528d8bd1c733.zip
docs: update CONFIG.md
skip-checks: true
Diffstat (limited to 'CONFIG.md')
-rw-r--r--CONFIG.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/CONFIG.md b/CONFIG.md
index 35bf7055..7d242865 100644
--- a/CONFIG.md
+++ b/CONFIG.md
@@ -36,6 +36,7 @@ that config.
- [flux-lsp](#flux-lsp)
- [fortls](#fortls)
- [fsautocomplete](#fsautocomplete)
+- [fstar](#fstar)
- [gdscript](#gdscript)
- [ghcide](#ghcide)
- [gopls](#gopls)
@@ -2168,6 +2169,31 @@ require'lspconfig'.fsautocomplete.setup{}
```
+## fstar
+
+https://github.com/FStarLang/FStar
+
+LSP support is included in FStar. Make sure `fstar.exe` is in your PATH.
+```
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.fstar.setup{}
+```
+
+**Commands and default values:**
+```lua
+ Commands:
+
+ Default Values:
+ cmd = { "fstar.exe", "--lsp" }
+ filetypes = { "fstar" }
+ root_dir = root_pattern(".git")
+```
+
+
## gdscript
https://github.com/godotengine/godot