You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
535 B
Lua
19 lines
535 B
Lua
if true then
|
|
return {}
|
|
end
|
|
return {
|
|
'jayadamsmorgan/PklLanguageServer',
|
|
build = 'mv Editors/Neovim/pklls-nvim/* .',
|
|
config = function()
|
|
local capabilities = require('cmp_nvim_lsp').default_capabilities() -- if you are using nvim_cmp for completion
|
|
require('pklls-nvim.init').setup {
|
|
capabilities = capabilities, -- change or remove this
|
|
-- on_attach = custom_on_attach -- change or remove this
|
|
-- cmd = custom_path_to_pkl_lsp_server
|
|
}
|
|
end,
|
|
dependencies = {
|
|
'neovim/nvim-lspconfig',
|
|
},
|
|
}
|