From 30bac647ef5279c9f7e2f8721291ad84a2073316 Mon Sep 17 00:00:00 2001 From: wongjiahau Date: Wed, 15 Feb 2023 09:31:10 +0800 Subject: [PATCH] Revert "style(explore): make Right the default position" This reverts commit 374b8ddd4e43d008c361348c307367c678da5963. --- helix-view/src/editor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index 56b6d998..3968c002 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -157,7 +157,7 @@ impl ExplorerConfig { impl Default for ExplorerConfig { fn default() -> Self { Self { - position: ExplorerPosition::Right, + position: ExplorerPosition::Left, column_width: 30, } }