Тема авиакомпании vim относится только к строке состояния (Терминал)
Я установил vim
airline
использование темы vim-plug
но темы относятся только к строке состояния, а не ко всему окну терминала.
Ниже мой .vimrc
Настройки.
filetype indent on
syntax on
set relativenumber
set cursorline
set showcmd
set showmatch
set ignorecase
set smartcase
set nu
" Plugins will be downloaded under the specified directory.
call plug#begin('~/.vim/plugged')
" Declare the list of plugins.
Plug 'tpope/vim-sensible'
Plug 'junegunn/seoul256.vim'
Plug 'scrooloose/nerdtree'
Plug 'davidhalter/jedi-vim' "python autocompletion
Plug 'tpope/vim-fugitive' "git integration
Plug 'scrooloose/syntastic' "code syntaxis
Plug 'Raimondi/delimitMate' "automatic closing of quotes, parenthesis...
Plug 'tmhedberg/SimpylFold' "Python folding
Plug 'ervandew/supertab' "<Tab> for code completion
Plug 'ctrlpvim/ctrlp.vim' "Finder for vim
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()
Ценю твою помощь!