summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
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,