From d25aa4f0a70060ba569593bdc94b17cb7eab46d1 Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Sat, 12 Nov 2022 18:58:50 +0000 Subject: [PATCH] feat: user configuration directory --- init.el | 5 +++++ user/init.el | 1 + 2 files changed, 6 insertions(+) create mode 100644 user/init.el diff --git a/init.el b/init.el index bd31338..065de5a 100644 --- a/init.el +++ b/init.el @@ -41,3 +41,8 @@ (load "keybinds") (load "performance") (load "language") + +;; Load user configuration +(add-to-list 'load-path (concat user-emacs-directory + (convert-standard-filename "user/"))) +(load "init") diff --git a/user/init.el b/user/init.el new file mode 100644 index 0000000..26531a7 --- /dev/null +++ b/user/init.el @@ -0,0 +1 @@ +;; This file contains user configuration. You're completely free to *safely* work with Dianciemacs here.