summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorShivesh Mandalia <mail@shivesh.org>2021-10-24 16:00:14 +0100
committerShivesh Mandalia <mail@shivesh.org>2021-10-24 16:00:14 +0100
commitc1c8d1ff30485019323ad87c628229f1016941ac (patch)
tree5001513c329b3c4f9d52f361fa95ffa820a8aaeb /config
parent5c7d4873908f28dde33013d10543e4cf1417525b (diff)
downloadaerc-shivesh.tar.gz
aerc-shivesh.zip
Stylesheet colour mapping for custom IMAP flagsshivesh
Diffstat (limited to 'config')
-rw-r--r--config/style.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/config/style.go b/config/style.go
index c3e8503..e1c9b8d 100644
--- a/config/style.go
+++ b/config/style.go
@@ -35,6 +35,15 @@ const (
STYLE_MSGLIST_DELETED
STYLE_MSGLIST_MARKED
+ STYLE_MSGLIST_IMPORTANT
+ STYLE_MSGLIST_LIST
+ STYLE_MSGLIST_FOOD
+ STYLE_MSGLIST_PERSONAL
+ STYLE_MSGLIST_WORK
+ STYLE_MSGLIST_PHYSICS
+ STYLE_MSGLIST_TODO
+ STYLE_MSGLIST_LATER
+
STYLE_DIRLIST_DEFAULT
STYLE_COMPLETION_DEFAULT
@@ -71,6 +80,16 @@ var StyleNames = map[string]StyleObject{
"msglist_deleted": STYLE_MSGLIST_DELETED,
"msglist_marked": STYLE_MSGLIST_MARKED,
+ // NOTE(shivesh): my custom flags
+ "msglist_important": STYLE_MSGLIST_IMPORTANT,
+ "msglist_list": STYLE_MSGLIST_LIST,
+ "msglist_food": STYLE_MSGLIST_FOOD,
+ "msglist_personal": STYLE_MSGLIST_PERSONAL,
+ "msglist_work": STYLE_MSGLIST_WORK,
+ "msglist_physics": STYLE_MSGLIST_PHYSICS,
+ "msglist_todo": STYLE_MSGLIST_TODO,
+ "msglist_later": STYLE_MSGLIST_LATER,
+
"dirlist_default": STYLE_DIRLIST_DEFAULT,
"completion_default": STYLE_COMPLETION_DEFAULT,