Skip to content

Commit

Permalink
Add groups for mini-statusline
Browse files Browse the repository at this point in the history
  • Loading branch information
joschrew committed Mar 3, 2024
1 parent 187723e commit 22a35f5
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
1 change: 1 addition & 0 deletions lua/lush_theme/.styluaignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
roy-colors.lua
47 changes: 47 additions & 0 deletions lua/lush_theme/roy-colors.lua
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,53 @@ local theme = lush(function(injected_functions)
fg = green,
},

-- mini-statusline!
MiniStatuslineModeNormal {
fg = bg,
bg = bg_subtle,
gui = "bold",
cterm = "bold",
},
MiniStatuslineModeInsert {
fg = hsl(0,0,93),
gui = "bold",
cterm = "bold",
bg = hsl(5, 72, 43),
},
MiniStatuslineModeVisual {
fg = bg,
bg = color4,
gui = "bold",
cterm = "bold",
},
MiniStatuslineModeReplace {
fg = bg,
bg = blue,
gui = "bold",
cterm = "bold",
},
MiniStatuslineModeCommand {
fg = bg,
bg = color3,
gui = "bold",
cterm = "bold",
},
MiniStatuslineModeOther {
bg = bg_subtle,
gui = "bold",
cterm = "bold",
bg = red,
},
MiniStatuslineDevinfo {
bg = bg_very_subtle,
},
MiniStatuslineFilename {
bg = hsl(0, 0, 84),
},
MiniStatuslineFileinfo {
bg = bg_very_subtle,
},

-- treesitter!
TSAttribute {
-- #767676
Expand Down

0 comments on commit 22a35f5

Please sign in to comment.