Questions tagged «iterm2»

8
NeoVim中使用配色方案时遇到问题
我对我的配色方案如何与termvim中的设置交互不完全了解,这妨碍了我使其在Neovim中正确显示的能力。 在我的.vimrc文件中,有关颜色方案的正确行为需要设置 set term=xterm set t_Co=256 忽略这些设置中的任何一个都会导致颜色方案的显示不正确: 正确 不正确 不同不正确 该方案如下所示: set background=dark hi clear if exists("syntax_on") syntax reset endif let g:colors_name="impact3" if exists("g:impact_transbg") hi Normal ctermfg=255 ctermbg=none hi NonText ctermfg=DarkGray ctermbg=none hi Statement ctermfg=Blue ctermbg=none hi Comment ctermfg=DarkGray ctermbg=none cterm=bold term=bold hi Constant ctermfg=173 ctermbg=none hi Identifier ctermfg=Cyan ctermbg=none …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.