1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

update logging conf

This commit is contained in:
jdhao 2022-02-03 17:27:45 +08:00
parent 7ce35a0a5f
commit b542bec561
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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