mirror of
https://git.aramjonghu.nl/AramJonghu/nvim.git
synced 2026-03-22 01:39:54 +01:00
21 lines
542 B
Lua
21 lines
542 B
Lua
require('undotree').setup({
|
|
float_diff = true,
|
|
layout = "left_bottom",
|
|
position = "left",
|
|
ignore_filetype = {
|
|
'undotree', 'undotreeDiff', 'qf', 'TelescopePrompt', 'spectre_panel',
|
|
'tsplayground'
|
|
},
|
|
window = {winblend = 30},
|
|
keymaps = {
|
|
['j'] = "move_next",
|
|
['k'] = "move_prev",
|
|
['gj'] = "move2parent",
|
|
['J'] = "move_change_next",
|
|
['K'] = "move_change_prev",
|
|
['<cr>'] = "action_enter",
|
|
['p'] = "enter_diffbuf",
|
|
['q'] = "quit"
|
|
}
|
|
})
|