ZIm/crates/git_ui/src/git_ui.rs
Nate Butler 8e0ae441f3
Initial git panel refinements (#21912)
- Wire up settings
- Update static Panel impl
- Tidy up renders

Release Notes:

- N/A
2024-12-12 09:13:40 -05:00

10 lines
188 B
Rust

use ::settings::Settings;
use gpui::AppContext;
use settings::GitPanelSettings;
pub mod git_panel;
mod settings;
pub fn init(cx: &mut AppContext) {
GitPanelSettings::register(cx);
}