feat(initial): add all dotfiles

This commit is contained in:
Oliver
2025-01-21 10:55:56 +01:00
parent 2186b49075
commit a81dc224bd
48 changed files with 1016 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
local configs = require 'lspconfig.configs'
local util = require 'lspconfig.util'
configs.prolog_lsp = {
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");
};
docs = {
description = [[
https://github.com/jamesnvc/prolog_lsp
Prolog Language Server
]];
}
}