Compare commits

..

No commits in common. "442eef04826277d1eb562665b49b3215e59b445e" and "326f9d039a2811531e48dacb6b30590fe6172e6a" have entirely different histories.

2 changed files with 6 additions and 2 deletions

View file

@ -48,7 +48,11 @@ in
vim-unimpaired # Some ex command mappings vim-unimpaired # Some ex command mappings
# Languages # Languages
rust-vim
vim-beancount vim-beancount
vim-jsonnet
vim-nix
vim-toml
# General enhancements # General enhancements
vim-qf # Better quick-fix list vim-qf # Better quick-fix list

View file

@ -54,8 +54,8 @@ local keys = {
s = { gitsigns.stage_hunk, "Stage hunk" }, s = { gitsigns.stage_hunk, "Stage hunk" },
S = { gitsigns.stage_buffer, "Stage buffer" }, S = { gitsigns.stage_buffer, "Stage buffer" },
u = { gitsigns.undo_stage_hunk, "Undo stage hunk" }, u = { gitsigns.undo_stage_hunk, "Undo stage hunk" },
["["] = { utils.partial(gitsigns.nav_hunk, "prev"), "Previous hunk" }, ["["] = { gitsigns.prev_hunk, "Previous hunk" },
["]"] = { utils.partial(gitsigns.nav_hunk, "next"), "Next hunk" }, ["]"] = { gitsigns.next_hunk, "Next hunk" },
}, },
} }