kickstart.nvim/lua/custom/plugins/pkl-neovim.lua

13 lines
239 B
Lua
Raw Normal View History

if true then
return {}
end
2024-04-29 18:00:00 -05:00
return {
'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
}