# HG changeset patch # User Zeger Van de Vannet # Date 1708699078 -3600 # Node ID c772355fedfb9bfd6fb59c8f238dde2833c2e536 # Parent af787ecac7c4caf35fe41e91203bcf12a71ede51 feat: tweak helix colors diff -r af787ecac7c4 -r c772355fedfb dot_config/helix/config.toml.tmpl --- a/dot_config/helix/config.toml.tmpl Fri Feb 23 15:33:13 2024 +0100 +++ b/dot_config/helix/config.toml.tmpl Fri Feb 23 15:37:58 2024 +0100 @@ -13,12 +13,18 @@ normal = "block" select = "underline" +[editor.whitespace.render] +newline = "all" + +[editor.whitespace.characters] +newline = "~" + [editor.indent-guides] render = true skip-levels = 1 [editor.statusline] -right = ["diagnostics", "version-control", "selections", "register", "position", "position-percentage"] +right = ["diagnostics", "selections", "register", "position", "position-percentage"] [keys.insert] C-f = "move_char_right" diff -r af787ecac7c4 -r c772355fedfb dot_config/helix/themes/tutticolori.toml --- a/dot_config/helix/themes/tutticolori.toml Fri Feb 23 15:33:13 2024 +0100 +++ b/dot_config/helix/themes/tutticolori.toml Fri Feb 23 15:37:58 2024 +0100 @@ -5,16 +5,17 @@ "ui.linenr.selected" = { fg = "blue" } "ui.cursorline" = { bg = "gray-light" } "ui.statusline" = { fg = "gray-darker", bg = "soft-blue" } -"ui.cursor" = { bg = "gray-lighter" } +"ui.cursor" = { bg = "gray-blue" } "ui.cursor.match" = { bg = "sky", underline = { style = "line" } } "ui.cursor.select" = {bg = "gray-blue"} -"ui.cursor.primary" = { bg = "gray-blue" } +"ui.cursor.primary" = { bg = "error-bg" } "ui.selection" = { bg = "sky" } "ui.virtual.indent-guide" = { fg = "gray-blue" } "ui.menu" = { fg = "black", bg = "ice-light" } "ui.menu.selected" = { fg = "black", bg = "soft-blue" } "ui.popup" = { fg = "black", bg = "ice-light" } "ui.help" = { fg = "black", bg = "ice-light" } +"ui.virtual.whitespace" = { fg = "gray" } "diagnostic.error" = { underline = { color = "error-red", style = "curl" } } "diagnostic.warning" = { underline = { color = "orange", style = "curl"}}