From b9bbe3a9a4768ca26c6e07baae485f5906d52f94 Mon Sep 17 00:00:00 2001 From: gered Date: Sun, 1 Sep 2024 21:51:30 -0400 Subject: [PATCH] ensure termguicolors is enabled for bufferline neovim tries to enable it by default anyway, but since i noticed this in the bufferline docs, i figured i'd make it explicit just in case --- lua/plugins/bufferline.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lua/plugins/bufferline.lua b/lua/plugins/bufferline.lua index 2d3b4e4..a6c3358 100644 --- a/lua/plugins/bufferline.lua +++ b/lua/plugins/bufferline.lua @@ -1,3 +1,6 @@ +-- Required by bufferline +vim.opt.termguicolors = true + return { { 'akinsho/bufferline.nvim',