[neovim] Set a different color scheme for Terminal.app than for other terminals

This commit is contained in:
Eryn Wells 2023-06-20 11:13:09 -07:00
parent 18038b798e
commit 8f74f0ae50

View file

@ -37,4 +37,8 @@ function reloadColorscheme(colorschemeName)
end
end
reloadColorscheme(nil)
if vim.env.TERM_PROGRAM == "Apple_Terminal" then
reloadColorscheme(nil)
else
reloadColorscheme("dracula")
end