Initial commit

This commit is contained in:
2026-07-05 23:22:38 -04:00
commit dec9313362
9 changed files with 161 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{
// The command used to start the Prolog language server. This requires a
// build of scryer-prolog (https://github.com/mthom/scryer-prolog) whose
// "--lsp" flag runs a built-in LSP server communicating over stdio.
// If scryer-prolog is not on your PATH, change this to the absolute path
// of the binary.
"enable": true,
"command": [
"scryer-prolog",
"--lsp"
],
// Which files this language server should be used for.
"selector": "source.prolog",
"settings": {}
}