Reputation: 184
I am trying to configure emacs powerline
, after trying multiple times, i still can't get it working correctly as shown in the figure below.
It seems to me that some font is missing in my system, but i don't know which one. I am using Mac El Capitan, the emacs version is 24.5.1.
Upvotes: 0
Views: 1894
Reputation: 3
You may be missing these settings:
(setq powerline-arrow-shape 'curve)
(setq powerline-default-separator-dir '(right . left))
'(right . left))
Upvotes: 0
Reputation: 36
try use following command
# clone
git clone https://github.com/powerline/fonts.git
# install
cd fonts
./install.sh
# clean-up a bit
cd ..
rm -rf fonts
You may need to manually select your favorite powerline font
picture -> select your favorite powerline font
Upvotes: 2