mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
23 lines
364 B
Lua
23 lines
364 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/jamesnvc/lsp_server
|
|
---
|
|
--- Language Server Protocol server for SWI-Prolog
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = {
|
|
'swipl',
|
|
'-g',
|
|
'use_module(library(lsp_server)).',
|
|
'-g',
|
|
'lsp_server:main',
|
|
'-t',
|
|
'halt',
|
|
'--',
|
|
'stdio',
|
|
},
|
|
filetypes = { 'prolog' },
|
|
root_markers = { 'pack.pl' },
|
|
}
|