fix(vim): Update lualine background color

This commit is contained in:
Tanguy Herbron 2023-04-10 02:21:11 +02:00
parent 6ef45cefd7
commit be10980b44

View File

@ -51,7 +51,10 @@ require('ayu').setup({
overrides = function() overrides = function()
if vim.o.background == "dark" then if vim.o.background == "dark" then
return { return {
Normal = {bg = '#0f1419', fg = '#cbccc6'}, Normal = {
bg = '#0f1419',
fg = '#cbccc6'
},
Comment = { fg = "#5c6773" } Comment = { fg = "#5c6773" }
} }
end end
@ -141,9 +144,13 @@ vim.t_Co = 256
--- Lualine --- --- Lualine ---
-- Setup -- Setup
local custom_ayu_dark = require("lualine.themes.ayu_dark")
custom_ayu_dark.normal.c.bg = "#080b0d"
require("lualine").setup({ require("lualine").setup({
options = { options = {
theme = "ayu_dark", theme = custom_ayu_dark,
section_separators = { left = '', right = '' }, section_separators = { left = '', right = '' },
component_separators = { left = '', right = '' }, component_separators = { left = '', right = '' },
globalstatus = true, globalstatus = true,