feat: use relative line numbering in vim normal mode by default

This commit is contained in:
CJ van den Berg 2024-02-29 15:57:06 +01:00
parent baf24d5504
commit faffc6db47
3 changed files with 7 additions and 1 deletions

View file

@ -31,6 +31,7 @@ pub fn create(a: Allocator) !tui.Mode {
return .{
.handler = EventHandler.to_owned(self),
.name = root.application_logo ++ "NORMAL",
.line_numbers = .relative,
};
}