]> Sergey Matveev's repositories - dotfiles.git/blob - vim/.vim/pack/stargrave/start/nonhumanhl/autoload/nonhumanhl.vim
Move to vim9script
[dotfiles.git] / vim / .vim / pack / stargrave / start / nonhumanhl / autoload / nonhumanhl.vim
1 vim9script
2 export def Load()
3     highlight nonhuman ctermbg=blue ctermfg=red
4     autocmd BufReadPost * syntax match nonhuman "[^\u0000-\u007Fа-яА-ЯёЁäÄöÖüÜßẞ]" containedin=ALL
5 enddef