diff options
-rw-r--r-- | early-init.el | 11 | ||||
-rw-r--r-- | init.el | 11 |
2 files changed, 20 insertions, 2 deletions
diff --git a/early-init.el b/early-init.el index 137638d..d841996 100644 --- a/early-init.el +++ b/early-init.el @@ -1,4 +1,15 @@ +;; These settings ensure Emacs does not flicker during early setup. + (menu-bar-mode -1) (tool-bar-mode -1) +(scroll-bar-mode -1) (menu-bar-bottom-and-right-window-divider) (setq gc-cons-threshold 100000000) + +(provide 'early-init) + +;;; early-init.el ends here + +;; Local Variables: +;; mode: emacs-lisp +;; End: @@ -6,10 +6,17 @@ ;;; Code: ;; First of all, we indicate the path to our literate configuration file. -(setq my/literate-config (concat user-emacs-directory "smart-documents.org")) +(setq sd-literate-config (concat + user-emacs-directory + "smart-documents.org")) + ;; Then, we load this file into Emacs' memory. -(org-babel-load-file my/literate-config) +(org-babel-load-file sd-literate-config) (provide 'init) ;;; init.el ends here + +;; Local Variables: +;; mode: emacs-lisp +;; End: |