mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 03:30:36 +00:00
feat(plugins): add various new Lua plugins for Neovim configuration. feat(plugins): add venv-selector, vim-maximizer, and vim-tmux-navigator plugins to enhance functionality
13 lines
261 B
Lua
13 lines
261 B
Lua
return {
|
|
"https://github.com/apple/pkl-neovim",
|
|
enabled = false,
|
|
lazy = true,
|
|
event = "BufReadPre *.pkl",
|
|
dependencies = {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
},
|
|
build = function()
|
|
vim.cmd("TSInstall! pkl")
|
|
end,
|
|
}
|