From 28fe3ce38f53d31a76a7af1cba62ef26b8a69858 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Thu, 19 Jan 2023 16:16:04 -0300 Subject: [PATCH] Completion is only one direction, so lets put both keys in there --- helix/config.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/helix/config.toml b/helix/config.toml index 877f8ed..abeb393 100644 --- a/helix/config.toml +++ b/helix/config.toml @@ -1,4 +1,4 @@ -theme = "ayu_dark" +theme = "ayu_mirage" [editor] line-number = "relative" @@ -35,6 +35,7 @@ auto-signature-help = false "C-e" = "goto_line_end_newline" "A-left" = "goto_line_start" "C-p" = "completion" +"C-n" = "completion" [keys.normal] "space" = { space = "file_picker", "h" = "no_op" } @@ -47,4 +48,4 @@ Z = { Z = ":wq" } x = "delete_char_forward" _ = "goto_line_start" V = "extend_line_below" -G = "goto_line_end" \ No newline at end of file +G = "goto_line_end"