diff options
| author | Thomas Vanbesien <tvanbesi@proton.me> | 2026-05-07 18:37:33 +0200 |
|---|---|---|
| committer | Thomas Vanbesien <tvanbesi@proton.me> | 2026-05-07 18:37:33 +0200 |
| commit | 79cb61ea77aa2c37a3a7fdbe90a49bb83d3bfdea (patch) | |
| tree | 412adb48eb8df0d825303297f36f5ce7cbdf4bc5 | |
| parent | 0c83c6f7401cabf00d9135bdf54b63e82276fea2 (diff) | |
| download | nvim-config-79cb61ea77aa2c37a3a7fdbe90a49bb83d3bfdea.tar.gz nvim-config-79cb61ea77aa2c37a3a7fdbe90a49bb83d3bfdea.zip | |
fix(nvim): disable lualine for qf buffers
| -rw-r--r-- | plugin/50-statusline.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/50-statusline.lua b/plugin/50-statusline.lua index f9bf68f..b823f58 100644 --- a/plugin/50-statusline.lua +++ b/plugin/50-statusline.lua @@ -37,7 +37,7 @@ vim.api.nvim_create_autocmd("OptionSet", { lualine.setup({ options = { theme = vim.o.background == "light" and "solarized_light" or "solarized_dark", - disabled_filetypes = { "netrw" }, + disabled_filetypes = { "netrw", "qf" }, }, }) end, |
