Small color tweaks in lualine
This commit is contained in:
parent
f3e35f8a3a
commit
c507d0f7b6
1 changed files with 9 additions and 2 deletions
|
|
@ -4,9 +4,16 @@ return {
|
|||
"nvim-tree/nvim-web-devicons"
|
||||
},
|
||||
config = function()
|
||||
local catppuccin_theme = require("lualine.themes.catppuccin")
|
||||
local slightly_darker_surface0 = "#2c3045"
|
||||
catppuccin_theme.normal.c.bg = slightly_darker_surface0
|
||||
-- TODO: Change the colors of the lualine theme to match the statusbar from the catppuccin theme in zellij
|
||||
-- The lualine is already using the catppuccin theme, but the design is not consistent with the zellij statusbar ...
|
||||
-- Very nitpicky, but it would be nice to have a consistent design
|
||||
|
||||
require("lualine").setup {
|
||||
options = {
|
||||
theme = "catppuccin",
|
||||
theme = catppuccin_theme,
|
||||
section_separators = { "", "" },
|
||||
component_separators = { "", "" },
|
||||
icons_enabled = true,
|
||||
|
|
@ -14,7 +21,7 @@ return {
|
|||
sections = {
|
||||
lualine_a = { "mode" },
|
||||
lualine_b = { "branch" },
|
||||
lualine_c = { require("auto-session.lib").current_session_name },
|
||||
lualine_c = {},
|
||||
lualine_x = { "encoding", "fileformat", "filetype" },
|
||||
lualine_y = { "progress" },
|
||||
lualine_z = { "location" }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue