From 374b8ddd4e43d008c361348c307367c678da5963 Mon Sep 17 00:00:00 2001 From: wongjiahau Date: Wed, 15 Feb 2023 09:25:01 +0800 Subject: [PATCH] style(explore): make Right the default position Refer https://twitter.com/JustinWGrote/status/1346575528560455682 --- 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 3968c002..56b6d998 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::Left, + position: ExplorerPosition::Right, column_width: 30, } }