mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
18 lines
371 B
Lua
18 lines
371 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/agda/agda-language-server
|
|
---
|
|
--- Language Server for Agda.
|
|
|
|
local util = require 'lspconfig.util'
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'als' },
|
|
filetypes = { 'agda' },
|
|
root_dir = function(bufnr, on_dir)
|
|
local fname = vim.api.nvim_buf_get_name(bufnr)
|
|
on_dir(util.root_pattern('.git', '*.agda-lib')(fname))
|
|
end,
|
|
}
|