-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add missing color specifications #3519
base: master
Are you sure you want to change the base?
Add missing color specifications #3519
Conversation
``` | ||
|
||
![seoul256-light](https://user-images.githubusercontent.com/700826/113475022-389d8600-94ae-11eb-905f-0939dd535837.png) | ||
|
||
```sh | ||
# morhetz/gruvbox | ||
export FZF_DEFAULT_OPTS='--color=bg+:#3c3836,bg:#32302f,spinner:#fb4934,hl:#928374,fg:#ebdbb2,header:#928374,info:#8ec07c,pointer:#fb4934,marker:#fb4934,fg+:#ebdbb2,prompt:#fb4934,hl+:#fb4934' | ||
export FZF_DEFAULT_OPTS='--color=fg+:#3c3836,preview-bg:#d5c4a1,info:#427b58,spinner:#9d0006,prompt:#9d0006,fg:#3c3836,header:#928374,marker:#9d0006,hl+:#9d0006,query:#928374,hl:#928374,pointer:#9d0006' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Which theme were you trying?
```vim | ||
let g:fzf_colors = | ||
\ { 'fg': ['fg', 'Normal'], | ||
\ 'bg': ['bg', 'Normal'], | ||
\ 'preview-fg': ['bg', 'Normal'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
preview-fg
defaults to fg
, so this line shouldn't be necessary. And the first argument bg
doesn't seem correct.
Some color specifications were missing which introduced terminal scheme weirdness when exporting with
Before and after with junegunn/seoul256.vim (dark):
Before and after with junegunn/seoul256.vim (light):
The following changes resolve this:
Additionally, I added an example for Lua configurations and updated the
FZF_DEFAULT_OPTS
variable forjunegunn/seoul256.vim
,morhetz/gruvbox
,arcticicestudio/nord-vim
, andtomasr/molokai
.