blob: 07d6e93f54fd13ef420d87f0f309d38744b8b8aa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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.
]],
},
}
|