-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.el
More file actions
44 lines (39 loc) · 1.08 KB
/
init.el
File metadata and controls
44 lines (39 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
;;; init.el --- Load the full configuration -*- lexical-binding: t -*-
;;; Commentary:
;;; Code:
;; Produce backtraces when errors occur: can be helpful to diagnose startup issues
(setq debug-on-error t)
(add-to-list 'load-path (expand-file-name "lisp" user-emacs-directory))
(require 'init-elpa)
;; use-package should after init-elpa
(require 'init-ai)
(require 'init-base)
(require 'init-beancount)
(require 'init-completion)
(require 'init-denote)
(require 'init-dired)
(require 'init-editing)
(require 'init-elfeed)
(require 'init-git)
(require 'init-gptel-magit)
(require 'init-help)
(require 'init-ibuffer)
(require 'init-isearch)
(require 'init-kaomoji)
(require 'init-keybinding)
(require 'init-lisp)
(require 'init-minibuffer)
(require 'init-misc)
(require 'init-org-publish)
(require 'init-org)
(require 'init-prog)
(require 'init-sessions)
(require 'init-translate)
(require 'init-ui)
(require 'init-utils)
(require 'init-windows)
;; Variables configured via the interactive 'customize' interface
(when (file-exists-p custom-file)
(load custom-file))
(provide 'init)
;;; init.el ends here