From 68440b7661a7a9da47ba192774cf7a4b575c31fc Mon Sep 17 00:00:00 2001 From: Daniel Lynn Date: Mon, 19 Sep 2022 12:21:36 -0500 Subject: [PATCH] Add color modes to helix --- helix/config.toml | 1 + helix/themes/bogster.toml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/helix/config.toml b/helix/config.toml index e96a696..ac0e615 100644 --- a/helix/config.toml +++ b/helix/config.toml @@ -1,6 +1,7 @@ theme = "bogster" [editor] +color-modes = true cursorline = true indent-guides.render = true true-color = true diff --git a/helix/themes/bogster.toml b/helix/themes/bogster.toml index 81f3538..46c90b7 100644 --- a/helix/themes/bogster.toml +++ b/helix/themes/bogster.toml @@ -48,6 +48,9 @@ "ui.cursorline" = { bg = "#131920" } "ui.statusline" = { fg = "#e5ded6", bg = "#232d38" } "ui.statusline.inactive" = { fg = "#c6b8ad", bg = "#232d38" } +"ui.statusline.insert" = { fg = "#e5ded6", bg = "red" } +"ui.statusline.normal" = { fg = "#e5ded6", bg = "green" } +"ui.statusline.select" = { fg = "#232d38", bg = "blue" } "ui.popup" = { bg = "#232d38" } "ui.window" = { bg = "#232d38" } "ui.help" = { bg = "#232d38", fg = "#e5ded6" }