1
0
Fork 0
mirror of https://codeberg.org/Mo8it/dotfiles.git synced 2025-04-04 21:23:07 +00:00

Use default-yank-register

This commit is contained in:
Mo 2025-01-04 19:30:58 +01:00
parent a45c76eb77
commit 82f3b7ae59

View file

@ -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"]