summaryrefslogtreecommitdiffstats
path: root/yo.toml
diff options
context:
space:
mode:
authorMichael McClintock <michael.mcclintock@hey.com>2024-09-15 15:31:01 +1000
committerMichael McClintock <michael.mcclintock@hey.com>2024-09-15 15:31:01 +1000
commit80683830c0b694eb8ecc110e2be09b17bcc3c070 (patch)
tree562f64e521a1742bd480c936e8ff2bb8c72e5080 /yo.toml
parentfcf88ada7e3bbecabac75c235fca7dd240d7b991 (diff)
downloadyo-theme-helix-80683830c0b694eb8ecc110e2be09b17bcc3c070.tar.gz
Improvements for recent helix versions
- jump labels - picker headings - (fix) primary cursor (now bold) - (fix) only show primary cursorline/column
Diffstat (limited to 'yo.toml')
-rw-r--r--yo.toml12
1 files changed, 10 insertions, 2 deletions
diff --git a/yo.toml b/yo.toml
index 8684e7f..3aaf935 100644
--- a/yo.toml
+++ b/yo.toml
@@ -19,16 +19,20 @@
"ui.menu" = { fg = "p11", bg = "p4" }
"ui.menu.selected" = { fg = "p12", modifiers = ["bold"] }
"ui.menu.scroll" = { fg = "p8", bg = "p4" }
+"ui.picker.header.column" = { underline.style = "line" }
# cursor/selection
"ui.cursor" = { fg = "p2", bg = "p11" }
"ui.cursor.insert" = { fg = "p2", bg = "keyword" }
"ui.cursor.select" = { fg = "p2", bg = "p12" }
"ui.cursor.match" = { fg = "p12", modifiers = ["bold"] }
+"ui.cursor.primary" = { fg = "p2", bg = "p11", modifiers = ["bold"] }
+"ui.cursor.primary.insert" = { fg = "p2", bg = "keyword", modifiers = ["bold"] }
+"ui.cursor.primary.select" = { fg = "p2", bg = "p12", modifiers = ["bold"] }
"ui.selection" = { bg = "p4" }
"ui.selection.primary" = { bg = "p5" }
-"ui.cursorline" = { bg = "p3" }
-"ui.cursorcolumn" = { bg = "p3" }
+"ui.cursorline.primary" = { bg = "p3" }
+"ui.cursorcolumn.primary" = { bg = "p3" }
# line numbers / diff
"ui.linenr" = { fg = "p7" }
@@ -49,7 +53,11 @@ diff = { fg = "p8" }
"ui.virtual.ruler" = { bg = "p3" }
"ui.virtual.whitespace" = { fg = "p6" }
"ui.virtual.indent-guide" = { fg = "p6" }
+"ui.virtual.wrap" = { fg = "p6" }
"ui.virtual.inlay-hint" = { fg = "p7", underline.style = "dotted" }
+"ui.virtual.jump-label" = { fg = "p12", modifiers = [
+ "bold",
+], underline = { style = "curl", color = "info" } }
# diagnostics
error = { fg = "error", modifiers = ["bold"] }