summaryrefslogtreecommitdiffstats
path: root/lua/inbox/config.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/inbox/config.lua')
-rw-r--r--lua/inbox/config.lua28
1 files changed, 16 insertions, 12 deletions
diff --git a/lua/inbox/config.lua b/lua/inbox/config.lua
index db122f8..0a7b550 100644
--- a/lua/inbox/config.lua
+++ b/lua/inbox/config.lua
@@ -17,7 +17,7 @@ local default_config = {
},
win_options = {
wrap = false,
- signcolumn = "auto",
+ signcolumn = "yes:1",
cursorcolumn = false,
colorcolumn = false,
foldcolumn = "0",
@@ -29,28 +29,32 @@ local default_config = {
30,
},
signs = {
- attachment = {
- text = "A",
- texthl = "Constant",
- },
- draft = {
- text = "D",
+ unread = {
+ text = "O",
+ texthl = "Special",
+ linehl = "Special",
},
flagged = {
text = "F",
texthl = "Search",
},
- passed = {
- text = "P",
+ attachment = {
+ text = "A",
+ texthl = "Constant",
},
replied = {
text = "R",
texthl = "Directory",
},
- unread = {
+ signed = {
text = "S",
- texthl = "Special",
- linehl = "Special",
+ texthl = "Directory",
+ },
+ draft = {
+ text = "D",
+ },
+ passed = {
+ text = "P",
},
},
}