diff --git a/kakoune/.config/kak/kakrc b/kakoune/.config/kak/kakrc index ed5f947..23eed8b 100644 --- a/kakoune/.config/kak/kakrc +++ b/kakoune/.config/kak/kakrc @@ -25,6 +25,10 @@ map global -docstring "Options" user 'o' ': enter-user-mode options-mode' map global -docstring "Light mode" options-mode 'l' ': colorscheme one-light' map global -docstring "Dark mode" options-mode 'd' ': colorscheme one-darker' +map global -docstring "Paste clipboard (append)" user 'p' ' xsel -bo' +map global -docstring "Paste clipboard (insert)" user 'P' '! xsel -bo' +map global -docstring "Yank to clipboard" user 'y' ' xsel -bi' + define-command -override file-open %{ prompt -menu -shell-script-candidates %{ fd -t f } 'File: ' %{ edit -- %val{text} } }