From 442860e26639655f4643ee9de58057622bb3c2ac Mon Sep 17 00:00:00 2001 From: Victor Bertin Date: Fri, 26 Jan 2024 23:09:28 +0100 Subject: [PATCH] Set status line theme to the global colorscheme instead of hardcoding the 'onedark' theme. It allows users to change the Neovim theme globally and to see those changes automatically reflected to the status line. --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 1ff16af5..3694bc03 100644 --- a/init.lua +++ b/init.lua @@ -205,7 +205,7 @@ require('lazy').setup({ opts = { options = { icons_enabled = false, - theme = 'onedark', + theme = 'auto', component_separators = '|', section_separators = '', },