1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 06:40:05 +08:00
SpaceVim/bundle/nvim-lspconfig-0.1.4/lua/lspconfig/server_configurations/prolog_ls.lua
2023-03-29 11:59:27 +08:00

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