✨ feat(nvim): add pkl extra
This commit is contained in:
parent
aba18045f8
commit
4ed37aca33
1 changed files with 11 additions and 0 deletions
11
.config/nvim/lua/plugins/extras/lang/pkl.lua
Normal file
11
.config/nvim/lua/plugins/extras/lang/pkl.lua
Normal 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",
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue