1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-10 12:45:47 +08:00
SpaceVim/bundle/nvim-lspconfig-latest/lua/lspconfig/server_configurations/agda_ls.lua
2024-05-21 12:31:14 +08:00

18 lines
326 B
Lua

local util = require 'lspconfig.util'
return {
default_config = {
cmd = { 'als' },
filetypes = { 'agda' },
root_dir = util.root_pattern('.git', '*.agda-lib'),
single_file_support = true,
},
docs = {
description = [[
https://github.com/agda/agda-language-server
Language Server for Agda.
]],
},
}