dylanaraps / pywal

🎨 Generate and change color-schemes on the fly.
MIT License
8.42k stars 327 forks source link

Set some colours back to default #432

Closed jerpint closed 4 years ago

jerpint commented 5 years ago

I really like this plugin. However, sometimes, the colours I use don't make sense in certain programs in my terminal. For example, when I use diffs in terminal, the colours no longer make sense to me compared to the defaults I used to have (i.e. green and red). How can I revert colours back for certain programs? In the case of diffing, these are the settings I use:

git config --global color.diff-highlight.oldNormal    "red bold"
git config --global color.diff-highlight.oldHighlight "red bold 52"
git config --global color.diff-highlight.newNormal    "green bold"
git config --global color.diff-highlight.newHighlight "green bold 22"

git config --global color.diff.meta       "yellow"
git config --global color.diff.frag       "magenta bold"
git config --global color.diff.commit     "yellow bold"
git config --global color.diff.old        "red bold"
git config --global color.diff.new        "green bold"
git config --global color.diff.whitespace "red reverse"

However they seemed to be overridden by pywal.

Thanks!

dylanaraps commented 5 years ago

You can use reset to reset the colorscheme to your terminal's default.

Dinduks commented 5 years ago

Hi @jerpint. Got the same problem as you, git diffs and files opened in VIM are unreadable most of the time.

What did you end up doing?