mirror of
https://github.com/Iron-E/nvim-libmodal
synced 2024-11-16 12:13:32 +00:00
18 lines
622 B
VimL
18 lines
622 B
VimL
if exists('g:loaded_libmodal')
|
|
finish
|
|
endif
|
|
let g:loaded_libmodal = 1
|
|
|
|
if !exists('g:libmodalTimeouts')
|
|
let g:libmodalTimeouts = &timeout
|
|
endif
|
|
|
|
" ************************************************************
|
|
" * User Configuration
|
|
" ************************************************************
|
|
|
|
" The default highlight groups (for colors) are specified below.
|
|
" Change these default colors by defining or linking the corresponding highlight group.
|
|
highlight default link LibmodalPrompt ModeMsg
|
|
highlight default LibmodalStar cterm=underline ctermfg=Cyan ctermbg=NONE gui=underline guifg=#55CCFF guibg=NONE guisp=#FFFFFF
|