Black spots on neovim bar
On my bar the are places where the colorscheme is not applyed:
screenshot:
I am using a slightly modified version of this config:
https://github.com/rafi/vim-config
I am on neovim.
also how can I change my neovim config and still easily switch back to the old one?
Hi @e3172 :wave:
In order to ensure the problem is related to the Nord theme you need to reproduce the problem with a minimal and clean configuration. This can be done by creating new configuration file with any name (e.g. testrc) and run vim with the following command: vim -u testrc
For me as a theme author it's not possible to know if the theme is the root cause of the problem when using such heavyweight configuration bootstrap/framework projects like rafi/vim-config that set tons of configurations and load many plugins where each line of code might break the theme. I'm also need to know which status bar is used since there are many like e.g. lightline.vim or vim-airline.
Here's an minimal test configuration you can use to try to reproduce the problem (supposed you're using vim-plug):
call plug#begin(expand('~/.vim/plugged'))
Plug 'arcticicestudio/nord-vim'
call plug#end()
set nocompatible
if (has("termguicolors"))
set termguicolors
endif
syntax enable
colorscheme nord
Another guess from me is, based on your screenshot, that your system is missing font types that support emojis and symbols for terminals. Maybe check out projects like ryanoasis/nerd-fonts in order to get compatible fonts.
This also happens with your minimal vim configureation, I will try using the nerd fonts
@PaxSov ping :)