vim-airline / vim-airline-themes

A collection of themes for vim-airline
MIT License
2.05k stars 350 forks source link

Change theme but nothing happen #104

Closed hong-duc closed 7 years ago

hong-duc commented 7 years ago

I try to change theme with this command AirlineTheme base16_3024 but nothing happen. It just stay like this menu_021

My .vimrc

set nocompatible
filetype plugin indent on
" Specify a directory for plugins
" - For Neovim: ~/.local/share/nvim/plugged
" - Avoid using standard Vim directory names like 'plugin'
call plug#begin('~/.vim/plugged')

Plug 'scrooloose/nerdtree'
Plug 'xuyuanp/nerdtree-git-plugin'
Plug 'leafgarland/typescript-vim'
Plug 'bling/vim-airline'
Plug 'vim-airline/vim-airline-themes'
" Initialize plugin system
call plug#end()

autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * if argc() == 1 && isdirectory(argv()[0]) && !exists("s:std_in") | exe 'NERDTree' argv()[0] | wincmd p | ene | endif
autocmd BufEnter * silent! lcd %:p:h
chrisbra commented 7 years ago

possible duplicate of #65 (please go throught some of the hints mentioned there to find out what is going on)