diff --git a/.config/helix/config.toml b/.config/helix/config.toml index 4206f9e..78b2c3a 100644 --- a/.config/helix/config.toml +++ b/.config/helix/config.toml @@ -7,6 +7,7 @@ cursorline = true idle-timeout = 5 true-color = true bufferline = "always" +default-yank-register = "+" [editor.lsp] display-messages = true @@ -29,10 +30,7 @@ newline = "all" render = true [keys.normal] -p = "paste_clipboard_after" -P = "paste_clipboard_before" -y = "yank_joined_to_clipboard" -D = ["yank_main_selection_to_clipboard", "delete_selection"] +D = ["yank", "delete_selection"] V = "extend_to_line_end" C-k = "goto_next_buffer" @@ -52,10 +50,7 @@ y = "no_op" esc = ["collapse_selection", "normal_mode"] [keys.select] -p = "replace_selections_with_clipboard" -P = "no_op" -y = "yank_joined_to_clipboard" -D = ["yank_main_selection_to_clipboard", "delete_selection"] +D = ["yank", "delete_selection"] V = "extend_to_line_end" esc = ["collapse_selection", "keep_primary_selection", "normal_mode"]