What terminal configurations affect Vim represent with bare .vimrc?

133 Views Asked by At

vim in Terminal.app (Basic profile) and Alacritty.app (no config) feels different.
.vimrc content is one statement: colorscheme blue (default colo).
Both are launched under bash shell without .bashrc.
Diff of envs:

< ALACRITTY_LOG=/var/folders/m6/r1vhznpx5flg71m10r0km5dw0000gp/T/Alacritty-96871.log
< ALACRITTY_SOCKET=/var/folders/m6/r1vhznpx5flg71m10r0km5dw0000gp/T/Alacritty-96871.sock
< COLORTERM=truecolor # unset COLORTERM (not helped)
< COMMAND_MODE=unix2003
10c6
< SHELL=/bin/bash
---
> SHELL=/bin/zsh # Terminal.app var, however use in profile /bin/bash --login [echo $0 -bash] (export SHELL=/bin/bash not helped)
13a10,12
> TERM_PROGRAM=Apple_Terminal
> TERM_PROGRAM_VERSION=440
> TERM_SESSION_ID=6F135ED6-6CD8-4C02-947D-FB0967EEBA1C
19,20c18
< __CFBundleIdentifier=io.alacritty
< __CF_USER_TEXT_ENCODING=0x1F6:0x0:0x0
---
> __CFBundleIdentifier=com.apple.Terminal

VIM - Vi IMproved 8.2 (2019 Dec 12, compiled Feb 28 2021 06:52:20) macOS version

What settings/env.variables/<smth_i_miss> influence on vim presentation (particularly why Alacritty gives mono-color behind the text while Terminal shows weird filling)? enter image description here

0

There are 0 best solutions below