mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-25 07:21:00 +01:00
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' },
|
|
}
|