From d609883ff76a5d47cd1fa04ca6e39f9f12348960 Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Sun, 26 Jun 2022 14:10:53 +0200 Subject: [PATCH] set lualine theme to gruvbox --- lua/setup/lualine.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/setup/lualine.lua b/lua/setup/lualine.lua index e9ec550..9251f0b 100644 --- a/lua/setup/lualine.lua +++ b/lua/setup/lualine.lua @@ -1,5 +1,5 @@ require('lualine').setup({ - options = { theme = 'gruvbox-material' }, sections = { lualine_c = { 'getcwd', { 'filename', path = 1, file_status = true } } }, + options = { theme = 'gruvbox' }, inactive_sections = { lualine_c = { 'getcwd', { 'filename', path = 1, file_status = true } } }, })