Skip to content

Instantly share code, notes, and snippets.

@masato3
Last active June 19, 2025 13:57
Show Gist options
  • Save masato3/835ba350488dc803f601e668a9ecfc7c to your computer and use it in GitHub Desktop.
Save masato3/835ba350488dc803f601e668a9ecfc7c to your computer and use it in GitHub Desktop.
Neovim plugin quicker
return {
'stevearc/quicker.nvim',
ft = 'qf',
opts = {},
vim.keymap.set('n', '<leader>q', function()
require('quicker').toggle()
end,
{ desc = 'quicker: toggle quickfix' }
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment