我正在尝试使gruvbox航空公司主题适用于我的vim状态行。我正在使用插入的vim插件管理器,并将gruvbox.vim航空主题添加到〜/ .vim / plugged / vim-airline-themes / autoload / airline / themes。
编辑:意识到我没有提供'vim-airline'插件本身。我在.vimrc中添加了以下行:'vim-airline / vim-airline'
虽然插件现在可以使用,但航空公司的“箭头”没有显示。状态行中的信息仅由框而不是箭头分隔。
编辑: 通过将以下行添加到我的.vimrc中,我可以使一切正常运行(尽管有点破旧):
" symbols section for unicode/airline symbols
let g:airline_powerline_fonts = 1
if !exists('g:airline_symbols')
let g:airline_symbols = {}
endif
" unicode symbols
let g:airline_left_sep = '»'
let g:airline_left_sep = '▶'
let g:airline_right_sep = '«'
let g:airline_right_sep = '◀'
let g:airline_symbols.linenr = '␊'
let g:airline_symbols.linenr = ''
let g:airline_symbols.linenr = '¶'
let g:airline_symbols.branch = '⎇'
let g:airline_symbols.paste = 'ρ'
let g:airline_symbols.paste = 'Þ'
let g:airline_symbols.paste = '∥'
let g:airline_symbols.whitespace = 'Ξ'
" airline symbols
let g:airline_left_sep = ''
let g:airline_left_alt_sep = ''
let g:airline_right_sep = ''
let g:airline_right_alt_sep = ''
let g:airline_symbols.branch = ''
let g:airline_symbols.readonly = ''
let g:airline_symbols.linenr = ''
" Automatic installation for vim-plug IFF not currently installed
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
" Plugins will be downloaded under the specified directory.
call plug#begin('~/.vim/plugged')
" Declare the list of plugins for vim-plug
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'junegunn/goyo.vim'
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
Plug 'morhetz/gruvbox'
Plug 'vim-airline/vim-airline-themes'
"List ends here. Plugins become visible to Vim after this call.
call plug#end()
syntax on
colorscheme gruvbox " cool color scheme
let g:airline_theme='gruvbox.vim'
:set background=dark
let g:gruvbox_contrast_dark = 'hard'
let g:gruvbox_termcolors = 256
set tabstop=4
set softtabstop=4 " spaces when editing
set shiftwidth=4
set expandtab
retab
set number " see numberlines
set showcmd " see last command
set cursorline " see cursorline
filetype indent on " spec indent files, filetype tracking
set showmatch " set parens to match each other
set incsearch " search as characters are entered
set hlsearch " highlight matches
filetype plugin indent on
syntax on
set laststatus=2
set t_Co=256
我不确定在这里我到底在做什么错。预先感谢您的帮助!
编辑:具有Gruvbox航空主题的完整工作.vimrc如下所示:
" Automatic installation for vim-plug IFF not currently installed
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
" Plugins will be downloaded under the specified directory.
call plug#begin('~/.vim/plugged')
" Declare the list of plugins for vim-plug
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'junegunn/goyo.vim'
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
Plug 'morhetz/gruvbox'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
"List ends here. Plugins become visible to Vim after this call.
call plug#end()
syntax on
colorscheme gruvbox " cool color scheme
:let g:airline_theme='gruvbox'
:set background=dark
let g:gruvbox_contrast_dark = 'hard'
let g:gruvbox_termcolors = 256
set tabstop=4
set softtabstop=4 " spaces when editing
set shiftwidth=4
set expandtab
retab
set number " see numberlines
set showcmd " see last command
set cursorline " see cursorline
filetype indent on " spec indent files, filetype tracking
set showmatch " set parens to match each other
set incsearch " search as characters are entered
set hlsearch " highlight matches
filetype plugin indent on
syntax on
set laststatus=2
set t_Co=256
" symbols section for unicode/airline symbols
" air-line
let g:airline_powerline_fonts = 1
if !exists('g:airline_symbols')
let g:airline_symbols = {}
endif
" unicode symbols
let g:airline_left_sep = '»'
let g:airline_left_sep = '▶'
let g:airline_right_sep = '«'
let g:airline_right_sep = '◀'
let g:airline_symbols.linenr = '␊'
let g:airline_symbols.linenr = ''
let g:airline_symbols.linenr = '¶'
let g:airline_symbols.branch = '⎇'
let g:airline_symbols.paste = 'ρ'
let g:airline_symbols.paste = 'Þ'
let g:airline_symbols.paste = '∥'
let g:airline_symbols.whitespace = 'Ξ'
" airline symbols
let g:airline_left_sep = ''
let g:airline_left_alt_sep = ''
let g:airline_right_sep = ''
let g:airline_right_alt_sep = ''
let g:airline_symbols.branch = ''
let g:airline_symbols.readonly = ''
let g:airline_symbols.linenr = ''
答案 0 :(得分:0)
如果使用vim-plug
,请添加到init.vim
中:
Plug 'morhetz/gruvbox'
设置colorscheme gruvbox
保存并退出。 :PlugInstall
,保存并退出。
应该可以。它本身具有自己的航空公司主题,不需要vim-airline-theme
插件。