Skip to content

Commit

Permalink
home (nvim): Consistently use square breaks as leaders for prev/next …
Browse files Browse the repository at this point in the history
…actions
  • Loading branch information
britter committed Nov 18, 2024
1 parent fe13226 commit d5d3519
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions home/terminal/nvim/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -139,12 +139,12 @@ in {
keymaps = [
{
action = "<cmd>bprev<CR>";
key = "b[";
key = "[b";
mode = ["n"];
}
{
action = "<cmd>bnext<CR>";
key = "b]";
key = "]b";
mode = ["n"];
}
{
Expand Down Expand Up @@ -178,12 +178,12 @@ in {
}
{
action = "<cmd>Gitsigns prev_hunk<CR>";
key = "<leader>g[";
key = "[g";
mode = ["n"];
}
{
action = "<cmd>Gitsigns next_hunk<CR>";
key = "<leader>g]";
key = "]g";
mode = ["n"];
}
{
Expand Down

0 comments on commit d5d3519

Please sign in to comment.