- Plugins are now properly organized into separate folders. - General configurations are also now organized by category into folders. - Now using lazyvim-defined plugins whenever possible for a more consistent and clean experience. - Duplicate manual plugin definitions were removed. - Extensive testing has been performed to ensure config works on fresh installs and a variety of systems. - Further slimming of manual plugins and an updated dependency list is forthcoming.
17 lines
781 B
Lua
17 lines
781 B
Lua
-- -----------------------------------------------------------------------------
|
|
-- ---------------------------- kitty-scrollback -------------------------------
|
|
-- -----------------------------------------------------------------------------
|
|
return {
|
|
"mikesmithgh/kitty-scrollback.nvim",
|
|
enabled = true,
|
|
lazy = true,
|
|
cmd = { "KittyScrollbackGenerateKittens", "KittyScrollbackCheckHealth" },
|
|
event = { "User KittyScrollbackLaunch" },
|
|
-- version = '*', -- latest stable version, may have breaking changes if major version changed
|
|
-- version = '^5.0.0', -- pin major version, include fixes and features that do not have breaking changes
|
|
config = function()
|
|
if vim.env.KITTY_SCROLLBACK_NVIM == "true" then
|
|
require("kitty-scrollback").setup()
|
|
end
|
|
end,
|
|
} |