aboutsummaryrefslogtreecommitdiff
path: root/core/ui.vim
diff options
context:
space:
mode:
Diffstat (limited to 'core/ui.vim')
-rw-r--r--core/ui.vim3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/ui.vim b/core/ui.vim
index a81a025..a1723f0 100644
--- a/core/ui.vim
+++ b/core/ui.vim
@@ -70,7 +70,8 @@ let s:colorscheme_func = printf('s:my_theme_dict.%s()', s:theme)
if has_key(s:my_theme_dict, s:theme)
execute 'call ' . s:colorscheme_func
else
- call v:lua.vim.notify('Invalid colorscheme function: ' . s:colorscheme_func, 'error', {'title': 'nvim-config'})
+ let s:msg = "Invalid colorscheme function: " . s:colorscheme_func
+ call v:lua.vim.notify(s:msg, 'error', {'title': 'nvim-config', 'timeout': 2500})
endif
"}}
"}