Add borders to windows; add navigation keybinds
Right now, colors are hardcoded in the Config in main.zig. This commit also adds a couple of new keybinds for navigating between windows. All keybinds are hardcoded as well right now.
This commit is contained in:
parent
42494ae5d1
commit
578e2f449e
7 changed files with 235 additions and 23 deletions
13
src/Config.zig
Normal file
13
src/Config.zig
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
// SPDX-FileCopyrightText: 2026 Ben Buhse <me@benbuhse.email>
|
||||
//
|
||||
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
const Config = @This();
|
||||
|
||||
border_width: u3,
|
||||
border_color_focused: RiverColor,
|
||||
border_color_unfocused: RiverColor,
|
||||
|
||||
const std = @import("std");
|
||||
|
||||
const RiverColor = @import("utils.zig").RiverColor;
|
||||
Loading…
Add table
Add a link
Reference in a new issue