diff options
author | Sam Light <samlight1994@gmail.com> | 2025-05-18 00:57:47 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2025-05-18 00:57:47 +0100 |
commit | 40af9d46384960f7217735e2c500960f3da91a3e (patch) | |
tree | 68430d0940e6e33cfbe57e44b193ac089a1877d9 /init.el | |
parent | d14ca77f0738fa1b70d979876c13189a9bf34a13 (diff) |
Enabled treesitter and completion config
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 22 |
1 files changed, 15 insertions, 7 deletions
@@ -3,10 +3,18 @@ (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") +(defvar config-dir (expand-file-name "config" user-emacs-directory)) + +(defconst config-files + '("ui" + "packages" + "editor" + "common" + "helm" + "projectile" + "magit" + "completion" + "tree-sitter")) + +(dolist (file config-files) + (load (expand-file-name file config-dir))) |