Browse Source

Managed to use Space-Space to open files

master
Julio Biason 2 years ago
parent
commit
dc3cc3a3d4
  1. 5
      helix/config.toml
  2. 2
      helix/languages.toml

5
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"
"A-left" = "goto_line_start"
[keys.normal]
"space" = { space = "file_picker" }

2
helix/languages.toml

@ -0,0 +1,2 @@
[[python]]
formatter = { command = "black", args = ["-l", "80", "-"] }
Loading…
Cancel
Save