From 8ae506131908d1d3f0d227f493de5a3e30c6081f Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Mon, 15 Jan 2024 21:06:04 +0000 Subject: [PATCH] hotfix: load user configuration directory before lisp --- init.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/init.el b/init.el index 1b213ca..854bc40 100644 --- a/init.el +++ b/init.el @@ -58,6 +58,11 @@ :repo "devraza/hazakura-emacs")) (load-theme 'hazakura t) +;; Load user configuration +(add-to-list 'load-path (concat user-emacs-directory + (convert-standard-filename "../diancite/"))) +(load "init") + ;; Load the code of some external files (load "interface") (load "editor") @@ -65,11 +70,6 @@ (load "keybinds") (load "languages") -;; Load user configuration -(add-to-list 'load-path (concat user-emacs-directory - (convert-standard-filename "../diancite/"))) -(load "init") - ;; Make gc pauses faster by decreasing the threshold. (setq gc-cons-threshold (* 2 1000 1000))