feat(ui): redesign lualine to have same background as nvim theme
This commit is contained in:
@@ -8,13 +8,13 @@ end
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
'mhartington/oceanic-next',
|
"mhartington/oceanic-next",
|
||||||
config = function()
|
config = function()
|
||||||
-- require('oceanic-next').setup()
|
-- require('oceanic-next').setup()
|
||||||
vim.cmd.colorscheme('OceanicNext')
|
vim.cmd.colorscheme("OceanicNext")
|
||||||
vim.cmd("highlight! EndOfBuffer guibg=background guifg=background")
|
vim.cmd("highlight! EndOfBuffer guibg=background guifg=background")
|
||||||
end
|
end,
|
||||||
}
|
},
|
||||||
-- {
|
-- {
|
||||||
-- 'nxvu699134/vn-night.nvim',
|
-- 'nxvu699134/vn-night.nvim',
|
||||||
-- config = function ()
|
-- config = function ()
|
||||||
|
|||||||
@@ -2,10 +2,11 @@ return {
|
|||||||
"nvim-lualine/lualine.nvim",
|
"nvim-lualine/lualine.nvim",
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
requires = { "nvim-tree/nvim-web-devicons", opt = true },
|
requires = { "nvim-tree/nvim-web-devicons", opt = true },
|
||||||
opts = {
|
init = function()
|
||||||
options = {
|
local lualine = require("lualine")
|
||||||
theme = "ayu_mirage",
|
local custom_ayu_mirage = require("lualine.themes.ayu_mirage")
|
||||||
},
|
custom_ayu_mirage.normal.c.bg = "#172c35"
|
||||||
|
lualine.setup({
|
||||||
section_separators = { left = "", right = "" },
|
section_separators = { left = "", right = "" },
|
||||||
component_separators = { left = "", right = "" },
|
component_separators = { left = "", right = "" },
|
||||||
sections = {
|
sections = {
|
||||||
@@ -23,5 +24,9 @@ return {
|
|||||||
lualine_y = { "progress" },
|
lualine_y = { "progress" },
|
||||||
lualine_z = { "location" },
|
lualine_z = { "location" },
|
||||||
},
|
},
|
||||||
|
options = {
|
||||||
|
theme = custom_ayu_mirage,
|
||||||
},
|
},
|
||||||
|
})
|
||||||
|
end,
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user