From 4becbd8cdead5d289e1d3f3ed2bbd2cc753290b8 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Tue, 23 Jun 2015 00:42:55 +0100 Subject: [PATCH] Load runtime setup files after custom-variables file --- init.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/init.el b/init.el index d579f87..f0e3c89 100644 --- a/init.el +++ b/init.el @@ -28,13 +28,13 @@ (load-file (get-config-path "remember.el")) (load-file (get-config-path "project-definitions.el")) -;; Load runtime specific setup files -(load-file (get-config-path "runtimes/ruby.el")) -(load-file (get-config-path "runtimes/nodejs.el")) - ;; Custom variables file (setq custom-file (get-config-path "custom-variables.el")) (load-file custom-file) +;; Load runtime specific setup files +(load-file (get-config-path "runtimes/ruby.el")) +(load-file (get-config-path "runtimes/nodejs.el")) + ;; Initialize packages in packages.el (initialize-my-packages)