From: Samir Benmendil Date: Thu, 13 Apr 2023 01:36:01 +0000 (+0100) Subject: nvim/ui: actually... don't show bufferline on single buffer X-Git-Url: https://git.rmz.io/dotfiles.git/commitdiff_plain/6bf5686588d27ef1498bebeb5d7d7619296530d0 nvim/ui: actually... don't show bufferline on single buffer It seems a lot nicer with a clean minimal view, especially on the alpha-nvim dashboard. --- diff --git a/nvim/lua/plugins/ui.lua b/nvim/lua/plugins/ui.lua index dccc956..90e0b1b 100644 --- a/nvim/lua/plugins/ui.lua +++ b/nvim/lua/plugins/ui.lua @@ -8,7 +8,7 @@ return { ---@type BufferlineConfig opts = { options = { - always_show_bufferline = true, + always_show_bufferline = false, }, }, },