How do I enable 256 color support for VIM in the Fedora 17 terminal?
My .bashrc:
1 # .bashrc
2
3 # Makes terminal default 256 Colors Include these lines in .bashrc
4
5 export TERM=xterm-256color
6
7 # User specific aliases and functions
8
9 alias rm='rm -i'
10 alias cp='cp -i'
11 alias mv='mv -i'
12
13 # Source global definitions
14 if [ -f /etc/bashrc ]; then
15 . /etc/bashrc
16 fi
17
Tput colors return 8, I am using 256 jellybeans for vim color, it changes some of the colors, but does not nearly work as shown in the screenshot (due to the fact the terminal only supports 8 colors)
Thanks in advance.