feat: add highlight_columns initial basic implementation

closes #208
This commit is contained in:
CJ van den Berg 2025-04-08 23:14:27 +02:00
parent 5199dcdd27
commit 33d4eb044a
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
3 changed files with 41 additions and 0 deletions

View file

@ -109,6 +109,7 @@ fn init(allocator: Allocator) InitError!*Self {
conf.top_bar = try allocator.dupe(u8, conf.top_bar);
conf.bottom_bar = try allocator.dupe(u8, conf.bottom_bar);
conf.include_files = try allocator.dupe(u8, conf.include_files);
conf.highlight_columns = try allocator.dupe(u8, conf.highlight_columns);
if (build_options.gui) conf.enable_terminal_cursor = false;
const frame_rate: usize = @intCast(tp.env.get().num("frame-rate"));