Fix notes on wrong powerline separators

I recently uninstalled railwaycat's emacs-mac-port (the old
recommendation for OS X) and installed @d12frosted's emacs-plus.

When I did that my powerline separators became just slightly off in
color from the rest of the spaceline. Asking on chat yielded that
ns-use-srgb-colorspace is set to true by default but should be nil.
This commit is contained in:
Caleb Meyer 2016-04-29 09:28:43 -05:00 committed by d12frosted
parent 74d6a6fcad
commit 94d71cda83
No known key found for this signature in database
GPG Key ID: 8D33A3B1A4AF7D30
2 changed files with 7 additions and 8 deletions

View File

@ -159,6 +159,13 @@ it just defines some additional options like `--with-spacemacs-icon`.
also recommended to add the [osx layer][] to your [dotfile][]. Install
instructions are available in the [osx layer][] documentation.
*Note:* if the powerline separators on the spaceline are a different (less
saturated) color than the rest of the line, you can add
```elisp
(setq ns-use-srgb-colorspace nil)
```
to your dotspacemacs/user-config section of your dotfile to fix it.
### Windows
Good quality builds can be found [on this page][emacs-for-windows]. It is

View File

@ -47,8 +47,6 @@
- [[#why-is-there-no-spacemacs-logo-in-the-startup-buffer][Why is there no Spacemacs logo in the startup buffer?]]
- [[#why-are-all-packages-unavailable][Why are all packages unavailable?]]
- [[#the-powerline-isnt-shown-correctly-when-spacemacs-is-used-within-putty][The powerline isn't shown correctly when Spacemacs is used within =PuTTY=]]
- [[#os-x][OS X]]
- [[#why-are-the-powerline-colors-not-correct-on-os-x][Why are the powerline colors not correct on OS X?]]
* Common
** Which version of Spacemacs am I running?
@ -553,9 +551,3 @@ directory as Emacs. See [[https://www.gnu.org/software/emacs/manual/html_mono/em
** The powerline isn't shown correctly when Spacemacs is used within =PuTTY=
You can follow [[http://mschulte.nl/posts/using-powerline-in-PuTTY.html][this explanation]] explaining how to correct this.
* OS X
** Why are the powerline colors not correct on OS X?
This is a [[https://github.com/milkypostman/powerline/issues/54][known issue]] as of Emacs 24.4 due to =ns-use-srgb-colorspace=
defaulting to true. It is recommended to use the [[http://github.com/railwaycat/homebrew-emacsmacport][emacs-mac-port]] build. See the
install section in the [[file:../README.md][README]] for more details.