Cygwin vim doesnt show 256 colors under ConEMu

Posted by Tulhan on Super User See other posts from Super User or by Tulhan
Published on 2013-10-18T15:06:28Z Indexed on 2013/10/19 9:58 UTC
Read the original article Hit count: 484

Filed under:
|
|

When using cygwin vim under ConEmu, the default vim theme doesnt display correctly after I set t_Co=256.

This is how ConEmu looks after the command: http://postimg.org/image/g6g98exbx/

My .vimrc:

set nocompatible
execute pathogen#infect()
filetype plugin on
syntax on
set term=xterm
set t_Co=256
let &t_AB="\e[48;5;%dm"
let &t_AF="\e[38;5;%dm"
colorscheme solarized

My vim --version: http://pastebin.com/1NFaA8YK

I am using ConEmu v131017.

Thanks for your help.

© Super User or respective owner

Related posts about vim

Related posts about cygwin