mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-10 12:45:47 +08:00
18 lines
326 B
Lua
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.
|
|
]],
|
|
},
|
|
}
|