diff options
author | ubq323 <ubq323@ubq323.website> | 2023-04-16 12:18:31 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2023-04-16 12:18:31 +0100 |
commit | 735782be32c6fca65a0b2bd8c4310533d57b610a (patch) | |
tree | 3ce123fab0c8e5e4b03a95206cb829842e07a3db /.config/kak |
initial commit of dot files
Diffstat (limited to '.config/kak')
-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' + |