1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-11 02:55:48 +08:00
SpaceVim/bundle/nvim-lspconfig-latest/lua/lspconfig/server_configurations/agda_ls.lua

18 lines
326 B
Lua
Raw Normal View History

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.
]],
},
}