emacs - Change fonts
How do I change Emacs’ default font size and font type?
- http://xahlee.info/emacs/emacs/emacs_list_and_set_font.html
- https://stackoverflow.com/questions/6026713/how-do-i-change-emacs-default-font-size-and-font-type
Option 1
- M-x customize-group
- Enter faces
- Click on “Basic Faces”
- Open / Expand “Default”
- Change the font name (like “Inconsolata”) and deselect “foundry”
- Click “Apply and save”
Option 2
This option is messing up the dired
view though.
(set-frame-font "Open Sans 10" nil t)
or
(set-frame-font "Open Sans" nil t)
This one did not mess up the dired
view.
(set-frame-font "DejaVu Sans Mono-10" nil t)