Load runtime setup files after custom-variables file

This commit is contained in:
2015-06-23 00:42:55 +01:00
parent b7eaff30cd
commit 4becbd8cde

View File

@@ -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)