From 56f49ab3141c440bdddb859c2710bc3ccd41b4bf Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Wed, 12 Mar 2025 14:29:01 +0200 Subject: [PATCH] fix(config): vim darkmode check typo Signed-off-by: Ismo Vuorinen --- config/vim/vimrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/vim/vimrc b/config/vim/vimrc index bb27861..4f8ae5e 100644 --- a/config/vim/vimrc +++ b/config/vim/vimrc @@ -341,9 +341,9 @@ function! ChangeColorScheme(channel, msg) endfunction function! CheckStatus(timer) - if executable("default") + if executable("defaults") let job = job_start( - \ ["default", "read", "-g", "AppleInterfaceStyle"], + \ ["defaults", "read", "-g", "AppleInterfaceStyle"], \ {"out_cb": "ChangeColorScheme"} \ ) else