PRAISE HELIX

This commit is contained in:
Daniel Flanagan 2022-06-03 09:20:46 -05:00
parent 3564af3a66
commit 50f40705a6
Signed by untrusted user: lytedev-divvy
GPG Key ID: 6D69CEEE4ABBCD82
2 changed files with 14 additions and 2 deletions

View File

@ -3,6 +3,7 @@ theme = "donokai"
[editor]
auto-pairs = false
scrolloff = 8
rulers = [80, 120]
[editor.cursor-shape]
normal = "block"

View File

@ -32,6 +32,7 @@
"attribute" = { fg = "fn_declaration" }
"comment" = { fg = "#88846F" }
"ui.virtual" = "#888888"
"string" = { fg = "#e6db74" }
"constant.character" = { fg = "#e6db74" }
@ -39,16 +40,26 @@
"constant.numeric" = { fg = "#ae81ff" }
"constant.character.escape" = { fg = "#ae81ff" }
"markup.heading" = "blue"
"markup.list" = "red"
"markup.bold" = { fg = "yellow", modifiers = ["bold"] }
"markup.italic" = { fg = "magenta", modifiers = ["italic"] }
"markup.link.url" = { fg = "yellow", modifiers = ["underlined"] }
"markup.link.text" = "red"
"markup.quote" = "cyan"
"markup.raw" = "green"
"diff.plus" = { fg = "#a6e22e" }
"diff.delta" = { fg = "#fd971f" }
"diff.minus" = { fg = "#f92672" }
# "ui.background" = { fg = "text", bg = "background" }
"ui.background" = { fg = "text", bg = "background" }
"ui.window" = { bg = "widget" }
"ui.popup" = { bg = "widget" }
"ui.help" = { bg = "widget" }
"ui.menu.selected" = { bg = "widget" }
"ui.menu" = { bg = "widget" }
"ui.menu.selected" = { bg = "blue", fg = "background" }
"ui.cursor" = { fg = "cursor", modifiers = ["reversed"] }
"ui.cursor.primary" = { fg = "cursor", modifiers = ["reversed"] }