add-highlighter global/ number-lines -separator ' ' set-face global LineNumbers rgb:ffff54 set global ui_options terminal_assistant=none map global normal P '!wl-paste -n' map global normal p 'wl-paste -n' map global normal R '|wl-paste -n' #auto completion hook global InsertCompletionShow .* %{ map window insert map window insert } hook global InsertCompletionHide .* %{ unmap window insert unmap window insert } hook global WinSetOption .* %{ expandtab # must be before softtabstop set-option buffer indentwidth 4 set-option global softtabstop 4 # number of spaces to delete on backspace } hook global RegisterModified '"' %{ nop %sh{ printf %s "$kak_main_reg_dquote" | wl-copy > /dev/null 2>&1 & }}