1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 22:40:05 +08:00
SpaceVim/bundle/nvim-lspconfig-latest/lua/lspconfig/server_configurations/prolog_ls.lua

28 lines
494 B
Lua
Raw Normal View History

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