vim icon indicating copy to clipboard operation
vim copied to clipboard

Black spots on neovim bar

Open PaxSov opened this issue 5 years ago • 3 comments

On my bar the are places where the colorscheme is not applyed: screenshot: 2020-04-20-141331_1920x1080_scrot 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?

PaxSov avatar Apr 20 '20 13:04 PaxSov

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.

arcticicestudio avatar Apr 28 '20 06:04 arcticicestudio

This also happens with your minimal vim configureation, I will try using the nerd fonts

PaxSov avatar Apr 28 '20 19:04 PaxSov

@PaxSov ping :)

jvoisin avatar Apr 16 '22 17:04 jvoisin