nixify: hyprland & kitty

This commit is contained in:
js0ny 2025-11-22 18:43:51 +00:00
parent db78fc2289
commit f56fa1259c
22 changed files with 449 additions and 29 deletions

View file

@ -30,4 +30,20 @@ return {
build = ":Cord update",
-- opts = {}
},
{
"mikesmithgh/kitty-scrollback.nvim",
enabled = true,
lazy = true,
cmd = {
"KittyScrollbackGenerateKittens",
"KittyScrollbackCheckHealth",
"KittyScrollbackGenerateCommandLineEditing",
},
event = { "User KittyScrollbackLaunch" },
-- version = '*', -- latest stable version, may have breaking changes if major version changed
-- version = '^6.0.0', -- pin major version, include fixes and features that do not have breaking changes
config = function()
require("kitty-scrollback").setup()
end,
},
}

View file

@ -38,12 +38,12 @@ return {
},
config = function()
require("multiple-cursors").setup({
pre_hook = function()
require("nvim-autopairs").disable()
end,
post_hook = function()
require("nvim-autopairs").enable()
end,
-- pre_hook = function()
-- require("blink.pairs.mapping").disable()
-- end,
-- post_hook = function()
-- require("blink.pairs.mapping").enable()
-- end,
})
end,
}