mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-12-22 18:27:34 +00:00
Add function and command for setting colorscheme based on dark mode
This commit is contained in:
parent
a5fad0152b
commit
b79938f0be
@ -72,3 +72,39 @@ endif
|
|||||||
set notitle
|
set notitle
|
||||||
" set title
|
" set title
|
||||||
" }}
|
" }}
|
||||||
|
|
||||||
|
" Function and command to update colors based on light and dark mode
|
||||||
|
function! UpdateColors()
|
||||||
|
"If not a mac, let's get out of here
|
||||||
|
if !IsMac()
|
||||||
|
return
|
||||||
|
endif
|
||||||
|
" Get the light color or default to VIM_COLOR
|
||||||
|
let light_color = $VIM_COLOR
|
||||||
|
if !empty($VIM_COLOR_LIGHT)
|
||||||
|
let light_color = $VIM_COLOR_LIGHT
|
||||||
|
endif
|
||||||
|
" Get the dark color or default to VIM_COLOR
|
||||||
|
let dark_color = $VIM_COLOR
|
||||||
|
if !empty($VIM_COLOR_DARK)
|
||||||
|
let dark_color = $VIM_COLOR_DARK
|
||||||
|
endif
|
||||||
|
" Find out if macOS is in dark mode
|
||||||
|
let cmd = "osascript
|
||||||
|
\ -e 'tell application \"System Events\"'
|
||||||
|
\ -e 'tell appearance preferences'
|
||||||
|
\ -e 'return dark mode'
|
||||||
|
\ -e 'end tell'
|
||||||
|
\ -e 'end tell'"
|
||||||
|
let dark_mode = substitute(system(cmd), '\n', '', 'g')
|
||||||
|
" Set colorscheme and background based on mode
|
||||||
|
if dark_mode == 'true'
|
||||||
|
execute 'colorscheme ' . dark_color
|
||||||
|
set background=dark
|
||||||
|
else
|
||||||
|
execute 'colorscheme ' . light_color
|
||||||
|
set background=light
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
command! UpdateColors call UpdateColors()
|
||||||
|
call UpdateColors()
|
||||||
|
Loading…
Reference in New Issue
Block a user