为Vim安装曝光主题(OS X 10,终端,Tmux)

时间:2015-04-11 19:55:49

标签: vim vim-plugin vim-syntax-highlighting

我正在为我的终端和vim安装曝光的主题。我已成功切换到我的终端(& Tmux),为终端导入了曝光的主题。但是,我得到了Vim的以下布局:

VIM

关于可能出现什么问题的任何想法?

我的.vimrc是:

set nocompatible
filetype off

set rtp+=~/.vim/bundle/vundle                                         
call vundle#rc()
Bundle 'gmarik/vundle'     
Bundle 'altercation/vim-colors-solarized'                             

filetype plugin indent on                                             

set number

syntax enable                                                         
set background=dark                                                   
let g:solarized_termcolors = 256                                      
colorscheme solarized 

set shiftwidth=4                                             
set expandtab
set notimeout                                                         
set ttimeout                                                          
set timeoutlen=100

我的bash_profile中唯一与颜色相关的行是(对于ls和diff):

export CLICOLOR=1
export LSCOLORS=Exfxcxdxbxegedabagacad
export GREP_OPTIONS='--color=auto'
function diff {
    colordiff -u "$@" | less -RF
}
newtext=green
oldtext=red
diffstuff=cyan

最后,我在终端高级设置中选择了xterm-256颜色。

1 个答案:

答案 0 :(得分:1)

在vim中,你应该

:set t_Co=256

此外,对于tmux,您需要终端类型screen-256color,而不是xterm-256color