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", "-"] }