aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/fstar.lua
blob: 5b3e0d470cb7d79db039d58dccc09514c24e597e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
---@brief
---
--- https://github.com/FStarLang/FStar
---
--- LSP support is included in FStar. Make sure `fstar.exe` is in your PATH.
---@type vim.lsp.Config
return {
  cmd = { 'fstar.exe', '--lsp' },
  filetypes = { 'fstar' },
  root_markers = { '.git' },
}