From 704817000a0d335073da46b40f5d06627988d251 Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Mon, 8 Jan 2024 18:26:35 +0100 Subject: [PATCH] feat(lualine): update moonfly color --- lua/plugins/lualine.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lua/plugins/lualine.lua b/lua/plugins/lualine.lua index 9785e06..ea8aa1c 100644 --- a/lua/plugins/lualine.lua +++ b/lua/plugins/lualine.lua @@ -1,10 +1,13 @@ -- https://github.com/nvim-lualine/lualine.nvim local function setup() + local custom_moonfly = require("lualine.themes.moonfly") + custom_moonfly.normal.c.bg = "#000000" + require("lualine").setup({ options = { icons_enabled = true, - theme = "auto", + theme = custom_moonfly, component_separators = { left = "", right = "", }, section_separators = { left = "", right = "", }, always_divide_middle = true,