diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/kak/colors/simple.kak | 16 | ||||
-rw-r--r-- | config/kak/kakrc | 11 |
2 files changed, 15 insertions, 12 deletions
diff --git a/config/kak/colors/simple.kak b/config/kak/colors/simple.kak index 31fe659..e617274 100644 --- a/config/kak/colors/simple.kak +++ b/config/kak/colors/simple.kak @@ -29,7 +29,7 @@ face global link rgb:000000,default face global bullet rgb:000000,default face global list rgb:212121,default -face global Default rgb:111111,rgb:FFFFFF +face global Default rgb:000000,rgb:FFFFFF face global PrimarySelection rgb:111111,rgb:cecece face global SecondarySelection rgb:333333,rgb:EEEEEE face global PrimaryCursor rgb:ffffff,rgb:111111+b @@ -43,14 +43,14 @@ face global LineNumberCursor rgb:999999,default face global MenuForeground rgb:ededed,rgb:212121 face global MenuBackground default,rgb:dedede face global MenuInfo default,rgb:ababab -face global Information default,rgb:bababa -face global Error rgb:ededed,rgb:212121 -face global StatusLine rgb:333333,rgb:dedede -face global StatusLineMode rgb:ededed,rgb:212121 -face global StatusLineInfo rgb:000000,rgb:cccccc -face global StatusLineValue rgb:000000,rgb:bababa +face global Information rgb:212121,rgb:dedede +face global Error rgb:ededed,red +face global StatusLine default,default +face global StatusLineMode default,default +face global StatusLineInfo default,default +face global StatusLineValue default,default face global StatusCursor default,rgb:878787 -face global Prompt rgb:ededed,rgb:212121 +face global Prompt default,default face global InfoBlock Information face global InfoBlockQuote Information diff --git a/config/kak/kakrc b/config/kak/kakrc index 72fd200..eca8dc5 100644 --- a/config/kak/kakrc +++ b/config/kak/kakrc @@ -38,7 +38,7 @@ lsp-enable set-option global grepcmd 'rg --column' # --- Line number -add-highlighter global/ number-lines +#add-highlighter global/ number-lines # --- COMMANDS define-command fd -docstring "find files" -params 1 %{ edit %arg{1} } @@ -90,9 +90,12 @@ declare-surrounding-pair 'double quotation' \" \" \" declare-surrounding-pair 'angle block' a <lt> <gt> map -docstring 'enter surround mode' global user c ': enter-user-mode surround<ret>' -set-option -add global ui_options terminal_padding_char=. +set-option -add global ui_options terminal_padding_char= set-option -add global ui_options terminal_assistant=off +set-option global autocomplete prompt +set-option global autoinfo onkey + # --- Git hook global WinCreate .* %{git show-diff} @@ -134,10 +137,10 @@ set-option global indentwidth 2 hook global WinCreate .* %{ expandtab } # Enable spelling for markdown -hook global WinCreate filetype=(markdown) %{ spell } +hook global WinCreate filetype=(markdown|.org) %{ spell } # Wrap for org and markdown -hook global WinCreate filetype=(markdown|org) %{ autowrap-enable } +hook global WinCreate filetype=(markdown|.org) %{ autowrap-enable } # Softwrap long lines add-highlighter global/ wrap -word -indent |