diff options
| author | jdhao <jdhao@hotmail.com> | 2022-02-03 17:27:45 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2022-02-03 17:27:45 +0800 |
| commit | b542bec561906b821cda4a599b12a5c34dfe1645 (patch) | |
| tree | 9b79764f4322ef29cd9f6837fcad27722cfe9cba | |
| parent | 7ce35a0a5f69c257df0fe6ad627232762fe9d71f (diff) | |
update logging conf
| -rw-r--r-- | core/globals.vim | 2 | ||||
| -rw-r--r-- | core/themes.vim | 2 |
2 files changed, 2 insertions, 2 deletions
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 |
