A tiny plugin for Neovim 0.12+ that makes transient windows easy to dismiss.
Zero config. ~25 lines of Lua.
- Press
qto close special buffers (help, quickfix, checkhealth, etc.) - Auto-closes quickfix window when it's the last window open
- Marks transient buffers as unlisted
- Configurable filetype list
- Works out of the box — no setup call required
- Neovim >= 0.12
Add to your vim.pack.add() call:
"https://github.com/swaits/tiny-shoo.nvim",All options are optional. Call setup() only if you want to customize:
require("tiny-shoo").setup({
filetypes = {
"checkhealth", "help", "lspinfo", "man", "neotest-output",
"neotest-output-panel", "neotest-summary", "notify", "qf",
"query", "startuptime",
},
})