nordtheme / vim

An arctic, north-bluish clean and elegant Vim theme.
https://www.nordtheme.com/ports/vim
MIT License
2.52k stars 274 forks source link

airline: Could not resolve airline theme "nord". #193

Closed powelleric closed 4 years ago

powelleric commented 4 years ago

Since upgrading my plugins, I am getting this error: airline: Could not resolve airline theme "nord".

Also, if I do :AirlineTheme nord, I get airline: There is an error in theme "nord".

arcticicestudio commented 4 years ago

Hi @powelleric, could you please…

  1. …try to reproduce the problem using a minimal Vim configuration (clean vimrc), e.g. this one (using vimplug as plugin manager):
    
    call plug#begin(expand('~/.vim/plugged'))
    Plug 'vim-airline/vim-airline'
    Plug 'arcticicestudio/nord-vim'
    call plug#end()

syntax enable colorscheme nord


2. …make sure you're running the [latest plugin version][rll].
3. …make sure you've installed the plugin after adding it to your `vimrc` by running `:PlugInstall`.
4. …try if other _airline_ themes working fine (builtin or another theme plugin).

[rll]: https://github.com/arcticicestudio/nord-vim/releases/latest
powelleric commented 4 years ago

Thank you for the minimal config. That showed the issue to be in my config. I found that Plug 'flazz/vim-colorschemes' was the issue. Removing that seems to have fixed the issue.

Thanks for your help and for the wonderful theme :)

arcticicestudio commented 4 years ago

You're welcome, great to see it works for you now :+1: