Projects
This commit is contained in:
parent
900f8dd438
commit
0852772ed2
3 changed files with 67 additions and 6 deletions
9
init.el
9
init.el
|
@ -63,6 +63,11 @@
|
|||
(load (concat user-emacs-directory "shared-packages.el"))
|
||||
;; UI and display related packages
|
||||
(load (concat user-emacs-directory "ui.el"))
|
||||
|
||||
;; Use a custom file instead of putting customisations in init.el
|
||||
(setq custom-file (concat user-emacs-directory "custom.el"))
|
||||
(when (file-exists-p custom-file) (load custom-file))
|
||||
|
||||
;; Writing behavior and packages
|
||||
(load (concat user-emacs-directory "writing.el"))
|
||||
;; Navigation behavior and packages
|
||||
|
@ -75,7 +80,3 @@
|
|||
(load-directory (concat user-emacs-directory "workflows"))
|
||||
;; Custom screens
|
||||
(load-directory (concat user-emacs-directory "screens"))
|
||||
|
||||
;; Use a custom file instead of putting customisations in init.el
|
||||
(setq custom-file (concat user-emacs-directory "custom.el"))
|
||||
(when (file-exists-p custom-file) (load custom-file))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue