2013-03-28 21:38:41 +04:00
|
|
|
# define color scheme
|
2015-05-09 23:00:50 +03:00
|
|
|
#
|
|
|
|
# For Code
|
2014-07-12 13:55:50 +04:00
|
|
|
face value red
|
|
|
|
face type yellow
|
2014-07-15 00:42:19 +04:00
|
|
|
face identifier green
|
2014-07-12 13:55:50 +04:00
|
|
|
face string magenta
|
|
|
|
face error default,red
|
|
|
|
face keyword blue
|
|
|
|
face operator yellow
|
|
|
|
face attribute green
|
|
|
|
face comment cyan
|
2014-07-13 19:57:49 +04:00
|
|
|
face meta magenta
|
2013-03-28 21:38:41 +04:00
|
|
|
|
2015-05-09 23:00:50 +03:00
|
|
|
# For markup
|
|
|
|
face title blue
|
|
|
|
face header cyan
|
|
|
|
face bold red
|
|
|
|
face italic yellow
|
|
|
|
face mono green
|
|
|
|
face block magenta
|
|
|
|
face link cyan
|
|
|
|
face bullet cyan
|
|
|
|
face list yellow
|
|
|
|
|
2012-09-10 22:45:34 +04:00
|
|
|
def -shell-params runtime %{ %sh{
|
2015-05-29 15:50:35 +03:00
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
echo "source '${kak_runtime}/$1'"
|
|
|
|
shift
|
|
|
|
done
|
2012-09-10 22:45:34 +04:00
|
|
|
}}
|
2012-01-14 05:04:08 +04:00
|
|
|
|
2012-09-10 22:45:34 +04:00
|
|
|
%sh{
|
2015-05-30 16:32:04 +03:00
|
|
|
autoload() {
|
|
|
|
dir=$1
|
|
|
|
for rcfile in ${dir}/*.kak; do
|
|
|
|
echo "try %{ source '${rcfile}' } catch %{ }";
|
|
|
|
done
|
|
|
|
for subdir in ${dir}/*; do
|
|
|
|
if [ -d "$subdir" ]; then
|
|
|
|
autoload $subdir
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2013-03-22 16:45:52 +04:00
|
|
|
if [ -n "${XDG_CONFIG_HOME}" ]; then
|
2012-09-10 22:45:34 +04:00
|
|
|
localconfdir="${XDG_CONFIG_HOME}/kak"
|
|
|
|
else
|
|
|
|
localconfdir="$HOME/.config/kak"
|
|
|
|
fi
|
2015-05-30 16:32:04 +03:00
|
|
|
|
2013-03-22 16:45:52 +04:00
|
|
|
if [ -d "${localconfdir}/autoload" ]; then
|
2015-05-30 16:32:04 +03:00
|
|
|
autoload ${localconfdir}/autoload
|
|
|
|
elif [ -d "${kak_runtime}/autoload" ]; then
|
|
|
|
autoload ${kak_runtime}/autoload
|
2012-09-10 22:45:34 +04:00
|
|
|
fi
|
2015-05-30 16:32:04 +03:00
|
|
|
|
2013-03-22 16:45:52 +04:00
|
|
|
if [ -f "${localconfdir}/kakrc" ]; then
|
2012-12-06 23:30:34 +04:00
|
|
|
echo "source '${localconfdir}/kakrc'"
|
|
|
|
fi
|
2012-09-10 22:45:34 +04:00
|
|
|
}
|