Compare commits

...

3 Commits

Author SHA1 Message Date
3ef8632e35
chore: update secrets
Some checks failed
Check Formatting of Files / Check-Formatting (push) Has been cancelled
2024-10-09 13:17:40 -05:00
f913c5ec72
feat(hypr): allow screencopy to use restore token by default 2024-10-09 13:17:39 -05:00
580a4982eb
feat(nvim): improve hls for markup list numbers 2024-10-09 13:17:39 -05:00
4 changed files with 10 additions and 2 deletions

@ -1 +1 @@
Subproject commit 189defc835b2d1eb303299bc264e1ebb0d805740
Subproject commit 1fc272564b294f34ceab981dc36ab3a8bcfa4a28

View File

@ -0,0 +1,3 @@
screencopy {
allow_token_by_default = true
}

View File

@ -2,12 +2,16 @@
(
([
(list_marker_star)
(list_marker_plus)
(list_marker_minus)
]) @markup.list
(#offset! @markup.list 0 0 0 -1)
(#set! conceal "•")
)
(
([
(list_marker_plus)
]) @markup.list.number
)
; checkboxes
((task_list_marker_unchecked) @markup.list.unchecked (#set! conceal ""))

View File

@ -266,6 +266,7 @@ return {
},
{ "Headline", { bg = colors.sumiInk0 } },
{ "@markup.list", { fg = colors.crystalBlue } },
{ "@markup.list.number", { fg = colors.surimiOrange } },
{ "@markup.list.checked", { fg = colors.springGreen } },
{ "@markup.list.indeterminate", { fg = colors.carpYellow } },
{ "@markup.verbatim", { fg = colors.springGreen, bg = colors.sumiInk0 } },