From dc3cc3a3d44af4ef5e0128064a5d329e361c5365 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 21 Sep 2022 15:04:05 -0300 Subject: [PATCH] Managed to use Space-Space to open files --- helix/config.toml | 5 ++++- helix/languages.toml | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 helix/languages.toml diff --git a/helix/config.toml b/helix/config.toml index 828bc43..d1d8b76 100644 --- a/helix/config.toml +++ b/helix/config.toml @@ -29,4 +29,7 @@ auto-signature-help = false "C-a" = "goto_line_start" "end" = "goto_line_end_newline" "C-e" = "goto_line_end_newline" -"A-left" = "goto_line_start" \ No newline at end of file +"A-left" = "goto_line_start" + +[keys.normal] +"space" = { space = "file_picker" } diff --git a/helix/languages.toml b/helix/languages.toml new file mode 100644 index 0000000..14f704c --- /dev/null +++ b/helix/languages.toml @@ -0,0 +1,2 @@ +[[python]] +formatter = { command = "black", args = ["-l", "80", "-"] }