diff options
Diffstat (limited to 'core/globals.vim')
| -rw-r--r-- | core/globals.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/globals.vim b/core/globals.vim index b1c795f..a89fad6 100644 --- a/core/globals.vim +++ b/core/globals.vim @@ -1,9 +1,9 @@ "{ Global Variable "{{ Custom variables -let g:is_win = has('win32') || has('win64') -let g:is_linux = has('unix') && !has('macunix') -let g:is_mac = has('macunix') +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 "}} "{{ Builtin variables |
