Skip to content

Commit

Permalink
quickfix not auto_resizing
Browse files Browse the repository at this point in the history
Signed-off-by: Colton J. McCurdy <mccurdyc22@gmail.com>
  • Loading branch information
mccurdyc committed Mar 6, 2022
1 parent 6f350ec commit 6a9ccb8
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions minimal/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,29 @@ require("packer").startup(
-- https://github.com/wbthomason/packer.nvim/blob/daec6c759f95cd8528e5dd7c214b18b4cec2658c/doc/packer.txt#L534
use "wbthomason/packer.nvim"

use {'kevinhwang91/nvim-bqf'}
use {
"kevinhwang91/nvim-bqf"
}
end
}
)
require('bqf').setup({
auto_enable = true,
auto_resize_height = true,

require("bqf").setup({
auto_enable = true,
magic_window = false,
auto_resize_height = true,
preview = {
auto_preview = false
},
func_map = {
vsplit = "",
ptogglemode = "z,",
stoggleup = ""
},
filter = {
fzf = {
action_for = {["ctrl-s"] = "split"},
extra_opts = {"--bind", "ctrl-o:toggle-all", "--prompt", "> "}
}
}
})

0 comments on commit 6a9ccb8

Please sign in to comment.