10 lines
224 B
EmacsLisp
10 lines
224 B
EmacsLisp
;;; init-system.el --- System-/OS-spezifische Konfiguration -*- lexical-binding: t; -*-
|
|
|
|
(require 'subr-x)
|
|
|
|
(setq org-file-apps
|
|
'((auto-mode . emacs)
|
|
("\\.pdf\\'" . "firefox \"%s\"")))
|
|
|
|
(provide 'init-system)
|