feat(nvim): add pkl extra

This commit is contained in:
Sergio Laín 2024-02-19 01:10:02 +01:00
parent aba18045f8
commit 4ed37aca33
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -0,0 +1,11 @@
return {
"apple/pkl-neovim",
dependencies = {
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
opts.ensure_installed = opts.ensure_installed or {}
vim.list_extend(opts.ensure_installed, { "pkl" })
end,
},
event = "BufRead *.pkl",
}