Skip to content

Instantly share code, notes, and snippets.

@masato3
Created June 19, 2025 14:12
Show Gist options
  • Save masato3/307cc9761459777254824841a772d573 to your computer and use it in GitHub Desktop.
Save masato3/307cc9761459777254824841a772d573 to your computer and use it in GitHub Desktop.
Neovim plugin nvim-bqf
return {
'kevinhwang91/nvim-bqf',
ft = 'qf',
dependencies = {
'nvim-treesitter/nvim-treesitter',
'junegunn/fzf'
},
opts = {
run = function()
vim.fn['fzf#install']()
end,
auto_enable = true,
func_map = {
vsplit = '<C-\\>',
split = '<F12>'
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment