12 lines
289 B
Lua
12 lines
289 B
Lua
|
|
---@brief
|
||
|
|
---
|
||
|
|
--- https://koka-lang.github.io/koka/doc/index.html
|
||
|
|
--- Koka is a functional programming language with effect types and handlers.
|
||
|
|
|
||
|
|
---@type vim.lsp.Config
|
||
|
|
return {
|
||
|
|
cmd = { 'koka', '--language-server', '--lsstdio' },
|
||
|
|
filetypes = { 'koka' },
|
||
|
|
root_markers = { '.git' },
|
||
|
|
}
|