Initial git panel refinements (#21912)

- Wire up settings
- Update static Panel impl
- Tidy up renders

Release Notes:

- N/A
This commit is contained in:
Nate Butler 2024-12-12 09:13:40 -05:00 committed by GitHub
parent 02fbad18ce
commit 8e0ae441f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 157 additions and 21 deletions

View file

@ -1 +1,10 @@
use ::settings::Settings;
use gpui::AppContext;
use settings::GitPanelSettings;
pub mod git_panel;
mod settings;
pub fn init(cx: &mut AppContext) {
GitPanelSettings::register(cx);
}