dotfiles/.config/nvim/lsp/koka.lua

12 lines
289 B
Lua
Raw Permalink Normal View History

---@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' },
}