29 lines
657 B
Plaintext
29 lines
657 B
Plaintext
source "%val{config}/plugins/plug.kak/rc/plug.kak"
|
|
|
|
plug "lePerdu/kakboard" %{
|
|
hook global WinCreate .* %{ kakboard-enable }
|
|
}
|
|
|
|
hook global WinCreate ^[^*]+$ %{
|
|
try editorconfig-load
|
|
}
|
|
|
|
hook global WinSetOption filetype=(markdown|yaml|yml) %{
|
|
set window indentwidth 2
|
|
}
|
|
|
|
hook global WinSetOption filetype=go %{
|
|
noexpandtab
|
|
set window indentwidth 0
|
|
}
|
|
|
|
add-highlighter global/number-lines number-lines
|
|
add-highlighter global/show-whitespaces show-whitespaces
|
|
|
|
evaluate-commands %sh{
|
|
case $TERM in
|
|
xterm-256color) printf "colorscheme solarized-light";;
|
|
screen-256color) printf "colorscheme solarized-light";;
|
|
esac
|
|
}
|