Skip to content

Commit

Permalink
feat(editor): add nvim-bqf for better qf list handling
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyxels committed Aug 9, 2024
1 parent c06a1b5 commit 8a7ea89
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions config/editor.nix
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@

luasnip.enable = true;

nvim-bqf.enable = true;

harpoon = {
enable = true;
keymaps = {
Expand All @@ -79,6 +81,15 @@
};

keymaps = [
{
key = "<Leader>q";
action = "<cmd>copen<cr>";
options = {
silent = true;
desc = "Toggle qf list";
};
}
# #################### Telescope ####################
{
key = "<Leader>b";
action = "<cmd>lua require('telescope.builtin').buffers(require('telescope.themes').get_dropdown{previewer = false})<cr>";
Expand Down

0 comments on commit 8a7ea89

Please sign in to comment.