diff options
| author | github-actions <github-actions@github.com> | 2021-10-22 08:44:57 +0000 |
|---|---|---|
| committer | github-actions <github-actions@github.com> | 2021-10-22 08:44:57 +0000 |
| commit | 2fb4b6a2f3188f12bad5196e1978528d8bd1c733 (patch) | |
| tree | 3b4093fe8c27664befc8fd831ab7bca7c613b239 /CONFIG.md | |
| parent | feat: add fstar language server (#1280) (diff) | |
| download | nvim-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.md | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -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 |
