kakoune: set colorscheme after all plugins, four-colors: change prompt, add diagnostic info and hint

This commit is contained in:
2026-05-18 21:41:52 +02:00
parent a29b006b00
commit fc7b72fe6b
3 changed files with 16 additions and 10 deletions

View File

@@ -15,14 +15,6 @@ nop %sh{
[ -e "$kak_config/autoload/stdlib" ] || ln -s "$kak_runtime/autoload" "$kak_config/autoload/stdlib"
}
colorscheme %sh{
if [ -e ~/.lightmode ]; then
echo four-colors-light
else
echo four-colors-dark
fi
}
declare-user-mode file-mode
declare-user-mode options-mode
@@ -208,3 +200,13 @@ bundle 'peneira' 'https://github.com/gustavo-hms/peneira' %{
map global -docstring 'Symbols' peneira-mode 's' ': peneira-symbols<ret>'
map global -docstring 'Recent files' peneira-mode 'r' ': peneira-recent-files<ret>'
}
# LOCAL
colorscheme %sh{
if [ -e ~/.lightmode ]; then
echo four-colors-light
else
echo four-colors-dark
fi
}