joshdick / onedark.vim

A dark Vim/Neovim color scheme inspired by Atom's One Dark syntax theme.
MIT License
3.91k stars 529 forks source link

airline theme not working #290

Closed uziahmed closed 3 years ago

uziahmed commented 3 years ago

my theme just isn't applying to the airline the rest of the entire theme is working but not the airline

i am using neovim

this is my init.nvim file Screenshot from 2021-10-15 19-32-24 e `syntax on

set noerrorbells set tabstop=4 softtabstop=4 set shiftwidth=4 set expandtab set smartindent set nu set nowrap set smartcase set noswapfile set incsearch set mouse=a

call plug#begin() Plug 'https://github.com/joshdick/onedark.vim.git' call plug#end()

colorscheme onedark let g:airline_theme='onedark' let g:airline_powerline_fonts = 1

inoremap ( ()i inoremap { {}i inoremap { {}O inoremap [ []i inoremap < <>i inoremap ' ''i inoremap " ""i`

does any body knows why the airline is not working

joshdick commented 3 years ago

How are you loading the airline plugin? Does adding Plug 'vim-airline/vim-airline' after onedark.vim in the plugin list help?

uziahmed commented 3 years ago

How are you loading the airline plugin? Does adding Plug 'vim-airline/vim-airline' after onedark.vim in the plugin list help?

yes thank you it did help i thought that if you are in neovim you already have a airline thank you

joshdick commented 3 years ago

I'm glad that worked! Thanks for using onedark.vim!