moved themes out of the config

This commit is contained in:
filipriec
2025-03-22 22:51:53 +01:00
parent 73567ae5cf
commit 5f6858251c
6 changed files with 9 additions and 2 deletions

View File

@@ -0,0 +1 @@
// src/config/binds.rs

View File

@@ -0,0 +1,4 @@
// src/config/colors.rs
pub mod themes;
pub use themes::*;

View File

@@ -1,4 +1,4 @@
// src/client/colors.rs
// src/client/themes/colors.rs
use ratatui::style::Color;
#[derive(Debug, Clone)]

View File

@@ -1,4 +1,6 @@
// src/config/mod.rs
pub mod colors;
pub mod config;
pub mod key_sequences;
pub mod binds;
pub mod colors;