From 93bc405d6d314e4736c15fc35594a48f7a771202 Mon Sep 17 00:00:00 2001 From: mo8it Date: Mon, 23 Oct 2023 17:08:27 +0200 Subject: [PATCH] Make space-f open the file picker in the current directory by default --- .config/helix/config.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.config/helix/config.toml b/.config/helix/config.toml index 2c60051..0a660fa 100644 --- a/.config/helix/config.toml +++ b/.config/helix/config.toml @@ -42,6 +42,10 @@ C-b = ":buffer-close" esc = ["collapse_selection", "keep_primary_selection"] +[keys.normal.space] +f = "file_picker_in_current_directory" +F = "no_op" + [keys.insert] esc = ["collapse_selection", "normal_mode"]