Skip to content

Commit

Permalink
home (nvim): Add navigation shortcuts for quickfix list
Browse files Browse the repository at this point in the history
  • Loading branch information
britter committed Feb 18, 2025
1 parent cab8137 commit eb96ee5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions home/terminal/nvim/navigation.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ _: {
key = "bd";
mode = ["n"];
}
{
action = "<cmd>cprevious<CR>";
key = "[c";
mode = ["n"];
}
{
action = "<cmd>cnext<CR>";
key = "]c";
mode = ["n"];
}
];
};
}

0 comments on commit eb96ee5

Please sign in to comment.