vim 和终端的主题问题

vim 和终端的主题问题

大家好。我试图找出我在使用 VIM 时遇到的一个奇怪问题,这可能只是因为我是这个程序的新手。

我今天开始使用它,并被告知使用 Vundle 来管理插件,这很好。但我正在使用的其中一个插件出现了问题,并且存在一般的配色方案问题。

我正在运行最新版本的 Linux Mint,并且有一个仅包含一行的 .bashrc:

TERM=xterm-256color

无论如何,我正在使用 VIM 的 Luna 配色方案,位于https://github.com/Pychimp/vim-luna,以及该vim-airline插件的同名主题。

当我加载 VIM 时,它看起来完全不对。不知道发生了什么,但我真的想修复它。下面的屏幕截图是我加载文件或其他东西时的样子:

https://i.stack.imgur.com/pbAmz.jpg

无论如何,如果有人能帮助我找出我做错了什么,或者我配置错误了……我会非常感激。我的内容.vimrc如下:

set nocompatible              " be iMproved, required
set number
syntax on
colorscheme luna
filetype off                  " required

let g:airline_theme='base16'
let g:airline_powerlinei_fonts = 1
set laststatus=2
set t_Co=256

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')

" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
Plugin 'pangloss/vim-javascript' 
Plugin 'othree/javascript-libraries-syntax.vim' 
Plugin 'ap/vim-css-color'
Plugin 'elzr/vim-json'
Plugin 'bling/vim-airline'
Plugin 'scrooloose/nerdtree'
Plugin 'marijnh/tern_for_vim'


" All of your Plugins must be added before the following line
call vundle#end()            " required
filetype plugin indent on    " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList       - lists configured plugins
" :PluginInstall    - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean      - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line

autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTreeType") && b:NERDTreeType == "primary") | q | endif
map <C-n> :NERDTreeToggle<CR>

相关内容