19 lines
710 B
EmacsLisp
19 lines
710 B
EmacsLisp
(add-to-list 'load-path "~/.config/emacs/config/")
|
|
(add-to-list 'load-path "~/.config/emacs/config/plugins/")
|
|
|
|
(require 'init-settings)
|
|
(require 'init-plugins)
|
|
|
|
(custom-set-variables
|
|
;; custom-set-variables was added by Custom.
|
|
;; If you edit it by hand, you could mess it up, so be careful.
|
|
;; Your init file should contain only one such instance.
|
|
;; If there is more than one, they won't work right.
|
|
'(package-selected-packages '(ivy doom-modeline use-package)))
|
|
(custom-set-faces
|
|
;; custom-set-faces was added by Custom.
|
|
;; If you edit it by hand, you could mess it up, so be careful.
|
|
;; Your init file should contain only one such instance.
|
|
;; If there is more than one, they won't work right.
|
|
)
|