summaryrefslogtreecommitdiff
path: root/.emacs.d/init.el
diff options
context:
space:
mode:
authoryuzu-eva <stevenhu@web.de>2022-12-07 12:48:11 +0100
committeryuzu-eva <stevenhu@web.de>2022-12-07 12:48:11 +0100
commitcae62a4c0bc3e09c5d74124d160d0f02bf8cf4fb (patch)
tree37e61b1cf05c40943d7766e0eb725a9a9eae48f6 /.emacs.d/init.el
parent96c8d201349fe8b41ca6bfc38317a42169e07cb7 (diff)
added files
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r--.emacs.d/init.el14
1 files changed, 14 insertions, 0 deletions
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)