Continue breaking init into modules

This commit is contained in:
jgrogan 2024-05-31 16:32:03 +01:00
parent 261e59a27f
commit fa30149008
8 changed files with 258 additions and 239 deletions

View file

@ -8,6 +8,9 @@
(tool-bar-mode -1)
(scroll-bar-mode -1)
;; line numbers
(global-display-line-numbers-mode 1)
;; Add small window fringes
(set-fringe-mode 10)
@ -19,4 +22,8 @@
`((".*" ,(concat user-emacs-directory "auto-save/") t)))
(setq backup-directory-alist '(("" . "~/.emacs.d/emacs-backup")))
(setq custom-file (concat user-emacs-directory "custom.el"))
(when (file-exists-p custom-file)
(load custom-file))
(provide 'jg-core)