diff --git a/.config/.gitignore b/.config/.gitignore index 94e4f20..5fed2eb 100644 --- a/.config/.gitignore +++ b/.config/.gitignore @@ -58,6 +58,8 @@ !fish/** !river/ !river/** +!kak/ +!kak/** !.gitignore polybar/default diff --git a/.config/kak/kakrc b/.config/kak/kakrc new file mode 100644 index 0000000..1760c08 --- /dev/null +++ b/.config/kak/kakrc @@ -0,0 +1,20 @@ +add-highlighter global/ number-lines -separator ' ' +set-face global LineNumbers rgb:ffff54 +set global ui_options terminal_assistant=none + +#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 +}