Skip to content

Commit

Permalink
feat(plugins): add nvim-bqf (ayamir#1091)
Browse files Browse the repository at this point in the history
IMO we could think about bringing `nvim-bqf` back. Not only does
it make nvim's quickfix mode a breeze to use, but it also sidesteps
some of the issues we had before, like #23. Plus, it's a plugin
that loads on demand, so it shouldn't cause any side effects 😄
  • Loading branch information
Jint-lzxy authored Dec 12, 2023
1 parent 52c981e commit d3f32fc
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lua/modules/configs/lang/bqf.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
return function()
require("modules.utils").load_plugin("bqf", {
preview = {
border = "single",
wrap = true,
winblend = 0,
},
})
end
8 changes: 8 additions & 0 deletions lua/modules/plugins/lang.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
local lang = {}

lang["kevinhwang91/nvim-bqf"] = {
lazy = true,
ft = "qf",
config = require("lang.bqf"),
dependencies = {
{ "junegunn/fzf", build = ":call fzf#install()" },
},
}
lang["fatih/vim-go"] = {
lazy = true,
ft = "go",
Expand Down

0 comments on commit d3f32fc

Please sign in to comment.