diff --git a/core/globals.vim b/core/globals.vim index 0b97344..47e6468 100644 --- a/core/globals.vim +++ b/core/globals.vim @@ -3,7 +3,7 @@ let g:is_win = (has('win32') || has('win64')) ? v:true : v:false let g:is_linux = (has('unix') && !has('macunix')) ? v:true : v:false let g:is_mac = has('macunix') ? v:true : v:false -let g:logging_level = 'debug' +let g:logging_level = 'info' "}} "{{ Builtin variables diff --git a/core/themes.vim b/core/themes.vim index 1de1a8b..8690c67 100644 --- a/core/themes.vim +++ b/core/themes.vim @@ -85,7 +85,7 @@ if !s:status endif execute 'call ' . s:colorscheme_func -if g:logging_level == 'debug' +if g:logging_level == 'info' let s:msg1 = "Currently loaded theme: " . s:theme call v:lua.vim.notify(s:msg1, 'info', {'title': 'nvim-config'}) endif