From 58783dce2207cadfa98403c0eb22d775697f5cb4 Mon Sep 17 00:00:00 2001 From: Felipe Contreras Salinas Date: Thu, 29 Jun 2023 22:55:24 -0400 Subject: [PATCH] lualine: use insert mode theming for terminal mode --- init.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 43b96d7..c97c5eb 100644 --- a/init.lua +++ b/init.lua @@ -50,11 +50,13 @@ opt.listchars = { } ---- lualine.nvim ---- local lualine = require('lualine') +local theme = require('lualine.themes.gruvbox') +theme.terminal = theme.insert lualine.setup({ options = { component_separators = { left = '│', right = '│' }, section_separators = { left = '', right = '' }, - globalstatus = true, + theme = theme, }, sections = { lualine_a = { 'mode' },