Vim
Run vim on Windows with 256 colors
- Check options "Inject ConEmuHk" and "ANSI X3.64 / xterm 256 colors" on "Features" page
- Check option "TrueMod (24bit color) support" on "Colores" page
- Edit your vimrc file, sample lines are here. Of course, you need some 256-color vim scheme, it is zenburn in the last line of this example.
set term=xterm
set t_Co=256
let &t_AB="\e[48;5;%dm"
let &t_AF="\e[38;5;%dm"
colorscheme zenburn
[ Source: http://stackoverflow.com/questions/14315519/conemu-vim-syntax-highlight ]