feat: BREAKING make highlight_columns a list of integers

This commit is contained in:
CJ van den Berg 2025-07-16 19:40:42 +02:00
parent 46dfde7685
commit 30c6ac0e82
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
2 changed files with 1 additions and 17 deletions

View file

@ -10,7 +10,7 @@ enable_terminal_cursor: bool = true,
enable_terminal_color_scheme: bool = builtin.os.tag != .windows,
highlight_current_line: bool = true,
highlight_current_line_gutter: bool = true,
highlight_columns: []const u8 = "80 100 120",
highlight_columns: []const u16 = &.{ 80, 100, 120 },
highlight_columns_alpha: u8 = 240,
highlight_columns_enabled: bool = false,
whitespace_mode: []const u8 = "none",