---@type LazySpec return { "https://github.com/stevearc/quicker.nvim", ft = { "qf" }, keys = { { "R", function() require("quicker").refresh() end, }, }, init = function() vim.api.nvim_create_autocmd("BufReadPost", { pattern = "qf", once = true, callback = function() local refresh = require("quicker").refresh refresh() require("core.plugin").on_attach(function() refresh() end) end, }) end, ---@module "quicker" ---@type quicker.SetupOptions opts = {}, }