diff options
author | Sam Light <samlight1994@gmail.com> | 2025-05-17 20:17:44 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2025-05-17 20:17:44 +0100 |
commit | 0b48b7d84872ea328ff942d2a2f786efc3319e82 (patch) | |
tree | 1d83b715d124d0a812df6669ac8e8ee4a27a5d26 /init.el |
Inital commit
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,12 @@ +;; -*- lexical-binding: t; -*- + +(defvar savefile-dir (expand-file-name "savefile" user-emacs-directory) + "This folder stores all the automatically generated save/history-files.") + +(load "~/.emacs.d/config/ui") +(load "~/.emacs.d/config/packages") +(load "~/.emacs.d/config/editor") +(load "~/.emacs.d/config/common") +(load "~/.emacs.d/config/helm") +(load "~/.emacs.d/config/projectile") +(load "~/.emacs.d/config/magit") |