Skip to content

Commit

Permalink
Add missing modes for command and terminal (#45)
Browse files Browse the repository at this point in the history
Added missing `command` and `terminal` mode configurations to the
ayu lualine theme. This ensures proper styling for these modes in
the statusline.
  • Loading branch information
daephx authored Dec 15, 2024
1 parent 2839c88 commit df06ef9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lua/lualine/themes/ayu.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@ local ayu = {
a = { fg = colors.bg, bg = colors.string, gui = 'bold' },
b = { fg = colors.string, bg = colors.panel_border },
},
command = {
a = { fg = colors.bg, bg = colors.constant, gui = 'bold' },
b = { fg = colors.constant, bg = colors.panel_border },
},
terminal = {
a = { fg = colors.bg, bg = colors.string, gui = 'bold' },
b = { fg = colors.string, bg = colors.panel_border },
},
}

return ayu

0 comments on commit df06ef9

Please sign in to comment.