Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add markup support #1525

Merged
merged 8 commits into from
Jan 23, 2022
Merged
Prev Previous commit
Next Next commit
Fix cursor change color on Base16 terminal and default
  • Loading branch information
NNBnh committed Jan 17, 2022
commit 183914180eddf2241f2d806d8b9ac8481056370c
2 changes: 1 addition & 1 deletion base16_theme.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"ui.statusline" = { fg = "black", bg = "white" }
"ui.statusline.inactive" = { fg = "gray", bg = "white" }
"ui.help" = { modifiers = ["reversed"] }
"ui.cursor" = { modifiers = ["reversed"] }
"ui.cursor" = { fg = "white", modifiers = ["reversed"] }
"variable" = "red"
"constant.numeric" = "yellow"
"constant" = "yellow"
Expand Down
2 changes: 1 addition & 1 deletion runtime/themes/base16_terminal.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"ui.statusline.inactive" = { fg = "gray", bg = "black" }
"ui.help" = { fg = "white", bg = "black" }
"ui.cursor" = { fg = "light-gray", modifiers = ["reversed"] }
"ui.cursor.primary" = { modifiers = ["reversed"] }
"ui.cursor.primary" = { fg = "light-white", modifiers = ["reversed"] }
"variable" = "light-red"
"constant.numeric" = "yellow"
"constant" = "yellow"
Expand Down