Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
根据我是否通过 PuTTY ssh 会话连接,如何使 vim 以不同的配色方案启动?我有一个无法通过 putty 正确显示的首选配色方案,但是当我通过公共终端连接时,有时我需要使用 putty。
PuTTY 是否设置任何环境变量?
Puty 似乎可以通过 Configuration->connection->data 设置环境变量。
之后,您可以在.vimrc:
.vimrc
if !empty($VARIABLE_PUTTY) colorscheme my_putty_color_scheme else colorscheme my_default_color_scheme endif