2019-10-10 01:06:08 +03:00
#+TITLE : ui/doom
#+DATE : October 9, 2019
2019-10-10 01:45:36 +03:00
#+SINCE : v1.3
2020-03-27 18:06:31 -04:00
#+STARTUP : inlineimages nofold
2017-05-04 09:00:33 +02:00
2019-10-10 01:06:08 +03:00
* Table of Contents :TOC_3:noexport:
- [[#description ][Description ]]
- [[#module-flags ][Module Flags ]]
2019-12-12 03:46:39 -05:00
- [[#plugins ][Plugins ]]
2019-10-10 01:06:08 +03:00
- [[#prerequisites ][Prerequisites ]]
- [[#configuration ][Configuration ]]
- [[#changing-theme ][Changing theme ]]
- [[#changing-fonts ][Changing fonts ]]
- [[#troubleshooting ][Troubleshooting ]]
- [[#strange-font-symbols ][Strange font symbols ]]
2019-12-12 03:46:39 -05:00
- [[#ugly-background-colors-in-tty-emacs-for-daemon-users ][Ugly background colors in tty Emacs for daemon users ]]
2019-10-10 01:06:08 +03:00
* Description
2019-12-12 03:46:39 -05:00
This module gives Doom its signature look: powered by the =doom-one= theme
(inspired by Atom's One Dark theme) and =solaire-mode= .
2017-05-04 09:00:33 +02:00
2019-12-12 03:46:39 -05:00
+ A colorscheme inspired by Atom's One Dark theme (now available in a separate
plugin: [[https://github.com/hlissner/emacs-doom-theme/ ][doom-themes ]])
2017-08-21 20:07:07 +02:00
+ A custom folded-region indicator for ~hideshow~
+ "Thin bar" fringe bitmaps for ~git-gutter-fringe~
2019-12-12 03:46:39 -05:00
+ File-visiting buffers are slightly brighter (thanks to solaire-mode)
2017-05-25 20:08:50 +02:00
2019-10-10 01:06:08 +03:00
** Module Flags
This module provides no flags.
2019-12-12 03:46:39 -05:00
** Plugins
+ [[https://github.com/hlissner/emacs-doom-themes ][doom-themes ]]
+ [[https://github.com/hlissner/emacs-solaire-mode ][solaire-mode ]]
2019-10-10 01:06:08 +03:00
* Prerequisites
This module has no prereqisites.
2017-05-04 09:00:33 +02:00
2017-12-08 22:48:38 -05:00
* Configuration
** Changing theme
Although this module uses the ~doom-one~ theme by default, [[https://github.com/hlissner/emacs-doom-theme/ ][doom-themes ]] offers a number of alternatives:
2017-08-21 20:07:07 +02:00
2017-12-08 22:48:38 -05:00
+ *doom-one:* doom-themes' flagship theme, inspired by [[https://atom.io/ ][Atom's ]] One Dark themes
+ *doom-vibrant:* a more vibrant version of doom-one
+ *doom-molokai:* based on Textmate's monokai
2021-01-13 01:13:38 -05:00
+ *doom-nova:* adapted from [[https://github.com/trevordmiller/nova-colors ][Nova ]]
2017-12-08 22:48:38 -05:00
+ *doom-one-light:* light version of doom-one
+ *doom-peacock:* based on Peacock from [[https://daylerees.github.io/ ][daylerees' themes ]]
+ *doom-tomorrow-night:* by [[https://github.com/ChrisKempson/Tomorrow-Theme ][Chris Kempson ]]
2017-08-21 20:07:07 +02:00
2017-12-08 22:48:38 -05:00
This can be changed by changing the ~doom-theme~ variable, e.g.
2017-05-04 09:00:33 +02:00
2017-12-08 22:48:38 -05:00
#+BEGIN_SRC emacs-lisp
(setq doom-theme 'doom-molokai)
2017-05-04 09:00:33 +02:00
#+END_SRC
2017-05-25 20:08:50 +02:00
2017-08-21 20:07:07 +02:00
** Changing fonts
2017-12-08 22:48:38 -05:00
core/core-ui.el has four relevant variables:
2017-08-21 20:07:07 +02:00
2017-12-08 22:48:38 -05:00
+ ~doom-font~ :: the default font to use in Doom Emacs.
+ ~doom-big-font~ :: the font to use when ~doom-big-font-mode~ is enabled.
+ ~doom-variable-font~ :: the font to use when ~variable-pitch-mode~ is active (or where the ~variable-pitch~ face is used).
+ ~doom-unicode-font~ :: the font used to display unicode symbols. This is ignored if the =:ui unicode= module is enabled.
2017-08-21 20:07:07 +02:00
#+BEGIN_SRC emacs-lisp
2017-12-08 22:48:38 -05:00
(setq doom-font (font-spec :family "Fira Mono" :size 12)
doom-variable-pitch-font (font-spec :family "Fira Sans")
doom-unicode-font (font-spec :family "DejaVu Sans Mono")
doom-big-font (font-spec :family "Fira Mono" :size 19))
2017-08-21 20:07:07 +02:00
#+END_SRC
2017-05-25 20:08:50 +02:00
2017-08-21 20:07:07 +02:00
* Troubleshooting
** Strange font symbols
2019-12-12 03:46:39 -05:00
If you're seeing strange unicode symbols, this is likely because you don't have
~all-the-icons~ 's font icon installed. You can install them with ~M-x
all-the-icons-install-fonts~.
** Ugly background colors in tty Emacs for daemon users
=solaire-mode= is an aesthetic plugin that makes file-visiting buffers brighter
than the rest of the Emacs' frame (to visually differentiate temporary windows
or sidebars from editing windows). This looks great in GUI Emacs, but can look
questionable in the terminal.
It disables itself if you start tty Emacs with ~emacs -nw~ , but if you create a
tty frame from a daemon (which solaire-mode cannot anticipate), you'll get an
ugly background instead.
If you only use Emacs in the terminal, your best bet is to disable the
solaire-mode package:
#+BEGIN_SRC elisp
;; in ~/.doom.d/packages.el
(package! solaire-mode :disable t)
#+END_SRC