add custom plugins
This commit is contained in:
parent
ee52697924
commit
8f85ffb9ec
7 changed files with 72 additions and 0 deletions
18
lua/custom/plugins/pkl-ls.lua
Normal file
18
lua/custom/plugins/pkl-ls.lua
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
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',
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue