From cae62a4c0bc3e09c5d74124d160d0f02bf8cf4fb Mon Sep 17 00:00:00 2001 From: yuzu-eva Date: Wed, 7 Dec 2022 12:48:11 +0100 Subject: added files --- .emacs.d/init.el | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .emacs.d/init.el (limited to '.emacs.d/init.el') diff --git a/.emacs.d/init.el b/.emacs.d/init.el new file mode 100644 index 0000000..6079b3d --- /dev/null +++ b/.emacs.d/init.el @@ -0,0 +1,14 @@ +(load "~/.emacs.d/packages" nil t) +(load "~/.emacs.d/functions" nil t) +(load "~/.emacs.d/keybinds" nil t) +(load "~/.emacs.d/config" nil t) + +(server-start) +(set-default-file-modes #o700) + +;; Load Witchmacs theme +(load-theme 'Witchmacs t) + +;; Move customization variables to a separate file and load it +(setq custom-file (locate-user-emacs-file "custom-vars.el")) +(load custom-file 'noerror 'nomessage) -- cgit v1.2.3