mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 11:40:36 +00:00
This commit adds a new Lua file `apple-pkl.lua` to the `absolute/plugins` directory. The file contains the configuration for the plugin `apple/pkl-neovim`. The configuration includes the following: - The plugin URL: `https://github.com/apple/pkl-neovim` - The plugin should be loaded lazily - The plugin should be triggered on the event "BufReadPre *.pkl" - The plugin has a dependency on `nvim-treesitter/nvim-treesitter` - The plugin build function installs the `pkl` language for Treesitter using the command `TSInstall! pkl`
12 lines
207 B
Lua
12 lines
207 B
Lua
return {
|
|
"https://github.com/apple/pkl-neovim",
|
|
lazy = true,
|
|
event = "BufReadPre *.pkl",
|
|
dependencies = {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
},
|
|
build = function()
|
|
vim.cmd("TSInstall! pkl")
|
|
end,
|
|
}
|