all repos

init.lua @ ce6a55b

my nvim config
1 files changed, 10 insertions(+), 0 deletions(-)
feat(aucmd): add keymaps for qf
Author: Smirnov Oleksandr ss2316544@gmail.com
Committed at: 2024-09-19 23:25:37 +0300
Parent: c8feb87
M lua/core/autocmd.lua

@@ -23,6 +23,16 @@ end,

}) u.aucmd("FileType", { + group = u.augroup "help", pattern = { "help", "man" }, command = "wincmd L", }) + +u.aucmd("FileType", { + group = u.augroup "quickfix", + pattern = "qf", + callback = function() + u.map("n", "<C-n>", "<cmd>cnext<CR>", true) + u.map("n", "<C-p>", "<cmd>cprev<CR>", true) + end, +})