moved themes out of the config
This commit is contained in:
1
client/src/config/binds.rs
Normal file
1
client/src/config/binds.rs
Normal file
@@ -0,0 +1 @@
|
|||||||
|
// src/config/binds.rs
|
||||||
4
client/src/config/colors.rs
Normal file
4
client/src/config/colors.rs
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
// src/config/colors.rs
|
||||||
|
pub mod themes;
|
||||||
|
|
||||||
|
pub use themes::*;
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
// src/client/colors.rs
|
// src/client/themes/colors.rs
|
||||||
use ratatui::style::Color;
|
use ratatui::style::Color;
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
@@ -1,4 +1,6 @@
|
|||||||
// src/config/mod.rs
|
// src/config/mod.rs
|
||||||
pub mod colors;
|
|
||||||
pub mod config;
|
pub mod config;
|
||||||
pub mod key_sequences;
|
pub mod key_sequences;
|
||||||
|
|
||||||
|
pub mod binds;
|
||||||
|
pub mod colors;
|
||||||
|
|||||||
Reference in New Issue
Block a user