Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1use ::settings::Settings; 2use gpui::AppContext; 3use settings::GitPanelSettings; 4 5pub mod git_panel; 6mod settings; 7 8pub fn init(cx: &mut AppContext) { 9 GitPanelSettings::register(cx); 10}