summaryrefslogtreecommitdiffstats
path: root/emacs/init.org
diff options
context:
space:
mode:
authorAmin Bandali <amin@aminb.org>2018-04-20 19:17:14 -0400
committerAmin Bandali <amin@aminb.org>2018-04-20 19:17:14 -0400
commitbab98ee5ee2763f7f5eca67c482a523a5bec929c (patch)
treeb2fc7e53ca154eb87513ea0a96093ec756bfec3e /emacs/init.org
parent6089982a89bcec4c02874f5a2af5cd879a473017 (diff)
downloadconfigs-bab98ee5ee2763f7f5eca67c482a523a5bec929c.tar.gz
configs-bab98ee5ee2763f7f5eca67c482a523a5bec929c.tar.xz
configs-bab98ee5ee2763f7f5eca67c482a523a5bec929c.zip
set `custom-file' and load it
Diffstat (limited to 'emacs/init.org')
-rw-r--r--emacs/init.org29
1 files changed, 21 insertions, 8 deletions
diff --git a/emacs/init.org b/emacs/init.org
index 7c74728..bca8b9f 100644
--- a/emacs/init.org
+++ b/emacs/init.org
@@ -56,14 +56,6 @@ file.
;;; Code:
#+end_src
-** Org
-
-#+begin_src emacs-lisp
-(setq org-src-tab-acts-natively t
- org-src-preserve-indentation nil
- org-edit-src-content-indentation 0)
-#+end_src
-
** Startup time
Measure and display startup time. Also, temporarily increase
@@ -97,6 +89,27 @@ Reset the variables back to default after init.
,load-file-name elapsed))))
#+end_src
+** Custom file (=custom.el=)
+
+I'm not planning on using the custom file much, but even so, I
+definitely don't want it mixing with =init.el=. So, here, let's give
+it it's own file.
+
+#+begin_src emacs-lisp
+(setq custom-file (expand-file-name
+ "etc/custom.el"
+ user-emacs-directory))
+(load custom-file)
+#+end_src
+
+** Org
+
+#+begin_src emacs-lisp
+(setq org-src-tab-acts-natively t
+ org-src-preserve-indentation nil
+ org-edit-src-content-indentation 0)
+#+end_src
+
* Footer
#+begin_src emacs-lisp :comments none