feat(initial): add all dotfiles
This commit is contained in:
21
nvim/lua/lspconfig/prolog_lsp.lua
Normal file
21
nvim/lua/lspconfig/prolog_lsp.lua
Normal 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
|
||||
]];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user