emacs/init.el

22 lines
1.1 KiB
EmacsLisp

(add-to-list 'load-path (expand-file-name "config" user-emacs-directory))
(load-file (expand-file-name "packages.el" (concat user-emacs-directory "config")))
(load-file (expand-file-name "ui.el" (concat user-emacs-directory "config")))
(load-file (expand-file-name "backup.el" (concat user-emacs-directory "config")))
(load-file (expand-file-name "clipboard.el" (concat user-emacs-directory "config")))
(load-file (expand-file-name "editor.el" (concat user-emacs-directory "config")))
(load-file (expand-file-name "keybinding.el" (concat user-emacs-directory "config"))) ;; Always put keybinding at the end
(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 nil))
(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.
)