<img width="1318" alt="image" src="https://github.com/user-attachments/assets/4a8e7b93-a7e7-4648-b8da-c5a6e7ede4f9" /> <img width="1318" alt="image" src="https://github.com/user-attachments/assets/bfc35845-719f-4c97-bf50-087feb0f6775" />
13 lines
185 B
Rust
13 lines
185 B
Rust
mod highlighter;
|
|
mod languages;
|
|
mod registry;
|
|
|
|
pub use highlighter::*;
|
|
pub use languages::*;
|
|
pub use registry::*;
|
|
|
|
use gpui::App;
|
|
|
|
pub fn init(cx: &mut App) {
|
|
registry::init(cx);
|
|
}
|