Black spots on neovim bar #210
Replies: 4 comments
-
Hi @e3172 👋 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. 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. 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. |
Beta Was this translation helpful? Give feedback.
-
This also happens with your minimal vim configureation, I will try using the nerd fonts |
Beta Was this translation helpful? Give feedback.
-
@PaxSov ping :) |
Beta Was this translation helpful? Give feedback.
-
Thank you for your patience! 🙏🏼 I recently published the first “Northern Post — The state and roadmap of Nord“ announcement which includes all details about the plans and future of the Nord project, including the goal of catching up with the backlog. This issue is part of the backlog and therefore I want to triage and process it to get one step closer to a “clean state“. Read the announcement about reaching the “clean“ contribution triage state in Nord‘s discussions for more details about the goal. Due to the scope of this issue of not being “purely technical“, or being related to the project‘s code at all, I‘ll convert it into a discussion for Nord‘s central community hub on GitHub. This way the repository is easier to maintain by separating conversations about the actual code while also making help requests, ideas and other contributions from users more visible and supportable by the community. |
Beta Was this translation helpful? Give feedback.
-
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?
Beta Was this translation helpful? Give feedback.
All reactions