mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
16 lines
345 B
Lua
16 lines
345 B
Lua
-- highlight-undo.nvim
|
|
-- https://github.com/tzachar/highlight-undo.nvim
|
|
return {
|
|
"tzachar/highlight-undo.nvim",
|
|
config = function()
|
|
require("highlight-undo").setup({
|
|
hlgroup = "HighlightUndo",
|
|
duration = 300,
|
|
keymaps = {
|
|
{ "n", "u", "undo", {} },
|
|
{ "n", "<C-r>", "redo", {} },
|
|
},
|
|
})
|
|
end,
|
|
}
|