blob: 1588aab005782adec9ce2065fd1dcd16c41a6b01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#colorscheme gruvbox-dark
colorscheme dracula
set-option global startup_info_version 9999999999
set-option global ui_options terminal_assistant=dilbert
#set-option -add global autoinfo normal
set-option global indentwidth 4
set-option global tabstop 4
add-highlighter global/ show-matching
map global normal <a-v> "k <a-j> ge"
hook global WinCreate .* %{
add-highlighter buffer/line-numbers number-lines -hlcursor
add-highlighter buffer/eighty-columns column 80 default,rgb:301040
add-highlighter buffer/whitespace regex '\h+$' 0:default,red
add-highlighter buffer/brackets show-matching
add-highlighter buffer/todo regex \b(TODO|FIXME|XXX|NOTE)\b 0:default+rb
smarttab
#indentguide-enable
#indentguide-refresh-continuous
#mark-show-enable
}
source "%val{config}/plugins/plug.kak/rc/plug.kak"
plug "andreyorst/plug.kak" noload
plug "andreyorst/smarttab.kak"
|