From be10980b44b7a3fb70c9ed898aa8da04a3f128b1 Mon Sep 17 00:00:00 2001 From: Tanguy Herbron Date: Mon, 10 Apr 2023 02:21:11 +0200 Subject: [PATCH] fix(vim): Update lualine background color --- .config/nvim/init.lua | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index 359c56a..1318bf1 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -51,7 +51,10 @@ require('ayu').setup({ overrides = function() if vim.o.background == "dark" then return { - Normal = {bg = '#0f1419', fg = '#cbccc6'}, + Normal = { + bg = '#0f1419', + fg = '#cbccc6' + }, Comment = { fg = "#5c6773" } } end @@ -141,9 +144,13 @@ vim.t_Co = 256 --- Lualine --- -- Setup +local custom_ayu_dark = require("lualine.themes.ayu_dark") + +custom_ayu_dark.normal.c.bg = "#080b0d" + require("lualine").setup({ options = { - theme = "ayu_dark", + theme = custom_ayu_dark, section_separators = { left = '', right = '' }, component_separators = { left = '', right = '' }, globalstatus = true,