From 63e7c54f592cd624f8a0cbe16feb2a16a4f2dfc0 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Fri, 14 May 2021 18:30:23 -0400 Subject: [PATCH] Move startup code --- README.org | 4 ++-- early-init.el | 10 +++++----- {lisp => elisp}/cleanup.el | 0 {lisp => elisp}/hosts.el | 0 {lisp => elisp}/modules.el | 0 {lisp => elisp}/options.el | 0 {lisp => elisp}/packages.el | 0 7 files changed, 7 insertions(+), 7 deletions(-) rename {lisp => elisp}/cleanup.el (100%) rename {lisp => elisp}/hosts.el (100%) rename {lisp => elisp}/modules.el (100%) rename {lisp => elisp}/options.el (100%) rename {lisp => elisp}/packages.el (100%) diff --git a/README.org b/README.org index 14116fe..005bec3 100644 --- a/README.org +++ b/README.org @@ -14,10 +14,10 @@ #+ATTR_LATEX: :width 420px [[./docs/images/desktop-example.png]] -Portable [[https://gnu.org/software/emacs][GNU/Emacs]] dotfiles. Built for Life, Liberty, and the Open Road. - #+begin_quote *DISCLAIMER* These dotfiles are undergoing a major re-write, use at your own caution! #+end_quote + +Portable [[https://gnu.org/software/emacs][GNU/Emacs]] dotfiles. Built for Life, Liberty, and the Open Road. diff --git a/early-init.el b/early-init.el index bb0146b..8bca58d 100644 --- a/early-init.el +++ b/early-init.el @@ -1,5 +1,5 @@ -(load-file "~/.emacs.d/lisp/cleanup.el") ;; Separate the immutable from the mutable. -(load-file "~/.emacs.d/lisp/packages.el") ;; Get the packages we want, how we want them. -(load-file "~/.emacs.d/lisp/options.el") ;; Load option declarations for host configurations. -(load-file "~/.emacs.d/lisp/hosts.el") ;; Load your hosts configurations. -(load-file "~/.emacs.d/lisp/modules.el") ;; Load your modules definitions. +(load-file "~/.emacs.d/elisp/cleanup.el") ;; Separate the immutable from the mutable. +(load-file "~/.emacs.d/elisp/packages.el") ;; Get the packages we want, how we want them. +(load-file "~/.emacs.d/elisp/options.el") ;; Load option declarations for host configurations. +(load-file "~/.emacs.d/elisp/hosts.el") ;; Load your hosts configurations. +(load-file "~/.emacs.d/elisp/modules.el") ;; Load your modules definitions. diff --git a/lisp/cleanup.el b/elisp/cleanup.el similarity index 100% rename from lisp/cleanup.el rename to elisp/cleanup.el diff --git a/lisp/hosts.el b/elisp/hosts.el similarity index 100% rename from lisp/hosts.el rename to elisp/hosts.el diff --git a/lisp/modules.el b/elisp/modules.el similarity index 100% rename from lisp/modules.el rename to elisp/modules.el diff --git a/lisp/options.el b/elisp/options.el similarity index 100% rename from lisp/options.el rename to elisp/options.el diff --git a/lisp/packages.el b/elisp/packages.el similarity index 100% rename from lisp/packages.el rename to elisp/packages.el