PRAISE HELIX
This commit is contained in:
parent
3564af3a66
commit
50f40705a6
2 changed files with 14 additions and 2 deletions
|
@ -3,6 +3,7 @@ theme = "donokai"
|
||||||
[editor]
|
[editor]
|
||||||
auto-pairs = false
|
auto-pairs = false
|
||||||
scrolloff = 8
|
scrolloff = 8
|
||||||
|
rulers = [80, 120]
|
||||||
|
|
||||||
[editor.cursor-shape]
|
[editor.cursor-shape]
|
||||||
normal = "block"
|
normal = "block"
|
||||||
|
|
|
@ -32,6 +32,7 @@
|
||||||
"attribute" = { fg = "fn_declaration" }
|
"attribute" = { fg = "fn_declaration" }
|
||||||
|
|
||||||
"comment" = { fg = "#88846F" }
|
"comment" = { fg = "#88846F" }
|
||||||
|
"ui.virtual" = "#888888"
|
||||||
|
|
||||||
"string" = { fg = "#e6db74" }
|
"string" = { fg = "#e6db74" }
|
||||||
"constant.character" = { fg = "#e6db74" }
|
"constant.character" = { fg = "#e6db74" }
|
||||||
|
@ -39,16 +40,26 @@
|
||||||
"constant.numeric" = { fg = "#ae81ff" }
|
"constant.numeric" = { fg = "#ae81ff" }
|
||||||
"constant.character.escape" = { 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.plus" = { fg = "#a6e22e" }
|
||||||
"diff.delta" = { fg = "#fd971f" }
|
"diff.delta" = { fg = "#fd971f" }
|
||||||
"diff.minus" = { fg = "#f92672" }
|
"diff.minus" = { fg = "#f92672" }
|
||||||
|
|
||||||
# "ui.background" = { fg = "text", bg = "background" }
|
"ui.background" = { fg = "text", bg = "background" }
|
||||||
|
|
||||||
"ui.window" = { bg = "widget" }
|
"ui.window" = { bg = "widget" }
|
||||||
"ui.popup" = { bg = "widget" }
|
"ui.popup" = { bg = "widget" }
|
||||||
"ui.help" = { 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" = { fg = "cursor", modifiers = ["reversed"] }
|
||||||
"ui.cursor.primary" = { fg = "cursor", modifiers = ["reversed"] }
|
"ui.cursor.primary" = { fg = "cursor", modifiers = ["reversed"] }
|
||||||
|
|
Reference in a new issue