mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 19:50:38 +00:00
Add configuration for the nvim-bqf plugin. This plugin provides enhanced quickfix and location list functionality for Neovim. The configuration includes specifying the plugin as a dependency and configuring it to load after other plugins. Additionally, it requires the nvim-treesitter and fzf plugins as dependencies. Finally, it loads a custom configuration file for the nvim-bqf plugin.
12 lines
203 B
Lua
12 lines
203 B
Lua
return {
|
|
"kevinhwang91/nvim-bqf",
|
|
event="VeryLazy",
|
|
dependencies = {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
"junegunn/fzf",
|
|
},
|
|
config = function()
|
|
require("absolute.after.nvim-bqf")
|
|
end,
|
|
}
|