mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 06:40:05 +08:00
28 lines
494 B
Lua
28 lines
494 B
Lua
local util = require 'lspconfig.util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = {
|
|
'swipl',
|
|
'-g',
|
|
'use_module(library(lsp_server)).',
|
|
'-g',
|
|
'lsp_server:main',
|
|
'-t',
|
|
'halt',
|
|
'--',
|
|
'stdio',
|
|
},
|
|
filetypes = { 'prolog' },
|
|
root_dir = util.root_pattern 'pack.pl',
|
|
single_file_support = true,
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://github.com/jamesnvc/lsp_server
|
|
|
|
Language Server Protocol server for SWI-Prolog
|
|
]],
|
|
},
|
|
}
|