From 2b708f36c811ff30bd635d5091c7d8c4b4c613f8 Mon Sep 17 00:00:00 2001 From: Logan G Date: Mon, 8 Apr 2024 19:17:57 -0600 Subject: [PATCH] Added kakoune config :( --- .config/.gitignore | 2 ++ .config/kak/kakrc | 20 ++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 .config/kak/kakrc 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 +}