forked from helix-editor/helix
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix (hx --health): Don't print headers in white (helix-editor#12355)
- Loading branch information
1 parent
35575b0
commit 4eed548
Showing
8 changed files
with
142 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,3 +63,4 @@ | |
|
||
; Test queries | ||
; Not supported | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# Author: NNB <nnbnh@protonmail.com> | ||
|
||
"ui.menu" = { fg = "light-gray", bg = "gray" } | ||
"ui.menu.selected" = { modifiers = ["reversed"] } | ||
"ui.linenr" = { fg = "light-gray", bg = "black" } | ||
"ui.popup" = { bg = "black" } | ||
"ui.window" = { bg = "black" } | ||
"ui.linenr.selected" = { fg = "white", bg = "black", modifiers = ["bold"] } | ||
"ui.selection" = { fg = "gray", modifiers = ["reversed"] } | ||
"comment" = { fg = "light-gray", modifiers = ["italic"] } | ||
"ui.statusline" = { fg = "white", bg = "black" } | ||
"ui.statusline.inactive" = { fg = "gray", bg = "black" } | ||
|
||
"ui.help" = { fg = "white", bg = "black" } | ||
"ui.cursor" = { fg = "white", modifiers = ["reversed"] } | ||
"ui.cursor.primary" = { fg = "white", modifiers = ["reversed"] } | ||
"ui.virtual" = "light-gray" | ||
"variable" = "light-red" | ||
"constant.numeric" = "yellow" | ||
"constant" = "yellow" | ||
"attributes" = "yellow" | ||
"type" = "light-yellow" | ||
"ui.cursor.match" = { fg = "light-yellow", modifiers = ["underlined"] } | ||
"string" = "light-green" | ||
"variable.other.member" = "light-green" | ||
"constant.character.escape" = "light-cyan" | ||
"function" = "light-blue" | ||
"constructor" = "light-blue" | ||
"special" = "light-blue" | ||
"keyword" = "light-magenta" | ||
"label" = "light-magenta" | ||
"namespace" = "light-magenta" | ||
|
||
"ui.statusline.normal" = { fg = "black", bg = "aqua" } | ||
"ui.statusline.insert" = { fg = "black", bg = "orange" } | ||
"ui.statusline.select" = { fg = "black", bg = "purple" } | ||
|
||
"markup.heading" = "light-blue" | ||
"markup.list" = "light-red" | ||
"markup.bold" = { fg = "light-yellow", modifiers = ["bold"] } | ||
"markup.italic" = { fg = "light-magenta", modifiers = ["italic"] } | ||
"markup.link.url" = { fg = "yellow", modifiers = ["underlined"] } | ||
"markup.link.text" = "light-red" | ||
"markup.quote" = "light-cyan" | ||
"markup.raw" = "light-green" | ||
|
||
"diff.plus" = "light-green" | ||
"diff.delta" = "yellow" | ||
"diff.minus" = "light-red" | ||
|
||
"diagnostic" = { modifiers = ["underlined"] } | ||
"ui.gutter" = { bg = "black" } | ||
"info" = "light-blue" | ||
"hint" = "gray" | ||
"debug" = "gray" | ||
"warning" = "yellow" | ||
"error" = "light-red" | ||
|
||
|
||
[palette] | ||
aqua = "#6fc3df" | ||
purple = "#c586c0" | ||
orange = "#f38518" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[toolchain] | ||
channel = "1.76.0" | ||
channel = "1.81.0" | ||
components = ["rustfmt", "rust-src", "clippy"] |