vimrc: Make background=light on Macintosh.

This commit is contained in:
Andrea Rogers 2024-10-16 12:55:34 -05:00
commit 7f959ed497

8
.vimrc
View file

@ -249,7 +249,13 @@ set ruler
set number set number
"set autoindent "set autoindent
set cursorline set cursorline
"set background=dark
" I use dark mode on all platforms except for Macintosh.
if has('macunix') || has('mac')
set background=light
else
set background=dark
endif
" For login terminals on Macs " For login terminals on Macs
set shell=bash\ -l set shell=bash\ -l