From bdb034d77acda5cd4c077ab650fe111a29136cdb Mon Sep 17 00:00:00 2001 From: Marius Peter Date: Sat, 25 Sep 2021 18:43:21 -0700 Subject: Make prettier. --- early-init.el | 11 +++++++++++ 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: diff --git a/init.el b/init.el index 1b01019..a5a8f5b 100644 --- a/init.el +++ b/init.el @@ -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: -- cgit v1.2.3