2013-03-28 18:38:41 +01:00
|
|
|
# define color scheme
|
2014-07-12 11:55:50 +02:00
|
|
|
face value red
|
|
|
|
face type yellow
|
|
|
|
face identifier cyan
|
|
|
|
face string magenta
|
|
|
|
face error default,red
|
|
|
|
face keyword blue
|
|
|
|
face operator yellow
|
|
|
|
face attribute green
|
|
|
|
face comment cyan
|
2014-07-13 17:57:49 +02:00
|
|
|
face meta magenta
|
2013-03-28 18:38:41 +01:00
|
|
|
|
2012-09-10 20:45:34 +02:00
|
|
|
def -shell-params runtime %{ %sh{
|
2013-03-22 13:45:52 +01:00
|
|
|
while [ $# -gt 0 ]; do
|
2012-09-10 20:45:34 +02:00
|
|
|
echo "source '${kak_runtime}/$1'"
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
}}
|
2012-01-14 02:04:08 +01:00
|
|
|
|
2012-09-10 20:45:34 +02:00
|
|
|
%sh{
|
2013-03-22 13:45:52 +01:00
|
|
|
if [ -n "${XDG_CONFIG_HOME}" ]; then
|
2012-09-10 20:45:34 +02:00
|
|
|
localconfdir="${XDG_CONFIG_HOME}/kak"
|
|
|
|
else
|
|
|
|
localconfdir="$HOME/.config/kak"
|
|
|
|
fi
|
2013-03-22 13:45:52 +01:00
|
|
|
if [ -d "${localconfdir}/autoload" ]; then
|
2012-09-10 20:45:34 +02:00
|
|
|
for rcfile in ${localconfdir}/autoload/*; do
|
|
|
|
echo "try %{ source '${rcfile}' } catch %{ }";
|
|
|
|
done
|
|
|
|
fi
|
2013-03-22 13:45:52 +01:00
|
|
|
if [ -f "${localconfdir}/kakrc" ]; then
|
2012-12-06 20:30:34 +01:00
|
|
|
echo "source '${localconfdir}/kakrc'"
|
|
|
|
fi
|
2012-09-10 20:45:34 +02:00
|
|
|
}
|