我正在尝试让 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 = ''
如果您使用vim-plug
添加到您的init.vim
:
Plug 'morhetz/gruvbox'
设置colorscheme gruvbox
保存并退出。:PlugInstall
,保存并退出。
它应该有效。它本身带有自己的航空公司主题,不需要vim-airline-theme
插件。
有关详细信息,请参阅存储库。