2024-12-05 18:09:37 -06:00
|
|
|
if true then
|
|
|
|
|
return {}
|
|
|
|
|
end
|
2024-04-29 18:00:00 -05:00
|
|
|
return {
|
2024-12-05 18:09:37 -06:00
|
|
|
'https://github.com/apple/pkl-neovim',
|
|
|
|
|
lazy = true,
|
|
|
|
|
event = 'BufReadPre *.pkl',
|
|
|
|
|
dependencies = { 'nvim-treesitter/nvim-treesitter' },
|
|
|
|
|
build = function()
|
|
|
|
|
vim.cmd 'TSInstall! pkl'
|
|
|
|
|
end,
|
2024-04-29 18:00:00 -05:00
|
|
|
}
|