diff options
Diffstat (limited to '.config/kak/kakrc')
-rw-r--r-- | .config/kak/kakrc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.config/kak/kakrc b/.config/kak/kakrc new file mode 100644 index 0000000..52a8a45 --- /dev/null +++ b/.config/kak/kakrc @@ -0,0 +1,19 @@ +add-highlighter global/ number-lines -relative +addhl global/ wrap -word +set -add global ui_options terminal_assistant=none +set -add global ui_options terminal_status_on_top=true + +set global indentwidth 0 +set global tabstop 4 + +hook global WinSetOption filetype=python %{ + set window indentwidth 4 + hook -once -always window WinSetOption filetype=.* %{ + set window indentwidth 0 + } +} + + +map global user <c> ':comment-line<ret>' -docstring 'comment line' +map global user <x> '<a-|>wl-copy<ret>' -docstring 'wl-copy' + |