Added kakoune config :(

This commit is contained in:
Logan G 2024-04-08 19:17:57 -06:00
parent 6aa1acce76
commit 2b708f36c8
Signed by: logan
GPG key ID: E328528C921E7A7A
2 changed files with 22 additions and 0 deletions

2
.config/.gitignore vendored
View file

@ -58,6 +58,8 @@
!fish/**
!river/
!river/**
!kak/
!kak/**
!.gitignore
polybar/default

20
.config/kak/kakrc Normal file
View file

@ -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 <tab> <c-n>
map window insert <s-tab> <c-p>
}
hook global InsertCompletionHide .* %{
unmap window insert <tab> <c-n>
unmap window insert <s-tab> <c-p>
}
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
}