Hi Michael, Michael Brand <michael.ch.br...@gmail.com> writes:
> (set-frame-font "DejaVu Sans Mono-12") > (add-to-list 'load-path "/f/git/org-mode/lisp/") > (require 'org-install) > (require 'org) > > Now I am a bit confused why the above works but not > > (add-to-list 'default-frame-alist '(font . "DejaVu Sans Mono-12")) What about (add-to-list 'initial-frame-alist '(font . "DejaVu Sans Mono-12")) ? `initial-frame-alist' is for the first frame, `default-frame-alist' for the ones that are created later one. Just a guess. HTH, -- Bastien