Use an icon to show server mode

This commit is contained in:
Tom Willemse 2016-10-08 00:40:10 +02:00
parent 117d14f169
commit ad5ca813da

View file

@ -701,6 +701,17 @@ To start off, first I need to enable lexical binding.
(setq projectile-completion-system 'ivy) (setq projectile-completion-system 'ivy)
#+END_SRC #+END_SRC
** Server mode
Diminish server mode with a nice icon.
#+BEGIN_SRC emacs-lisp
(with-eval-after-load 'server
(diminish 'server-buffer-clients
(propertize (concat " " (char-to-string #xf233))
'face '(:family "Font Awesome" :height 0.75))))
#+END_SRC
* Major modes * Major modes
** Emacs lisp mode ** Emacs lisp mode