2025-01-30 10:47:07 +07:00
|
|
|
(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
|
2024-11-18 11:34:03 +07:00
|
|
|
|
2024-10-14 22:30:10 +07:00
|
|
|
(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.
|
2025-01-30 10:47:07 +07:00
|
|
|
'(package-selected-packages nil))
|
2024-10-14 22:30:10 +07:00
|
|
|
(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.
|
|
|
|
)
|
|
|
|
|