diff options
author | Franck Cuny <franck@fcuny.net> | 2022-03-23 07:19:41 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-03-23 07:19:41 -0700 |
commit | 6f8d1be4c4335df9a96c771d3aa6111d25c3ed1b (patch) | |
tree | bf07b56e8156c5af4ce8fb8a571638be39e703b2 | |
parent | rename fcuny-settings to my-settings (diff) | |
download | emacs.d-6f8d1be4c4335df9a96c771d3aa6111d25c3ed1b.tar.gz |
rename fcuny-ui to my-ui
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/my-ui.el (renamed from emacs/custom/fcuny-ui.el) | 6 | ||||
-rw-r--r-- | emacs/init.el | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/emacs/custom/fcuny-ui.el b/emacs/custom/my-ui.el index aad7e55..a0473e6 100644 --- a/emacs/custom/fcuny-ui.el +++ b/emacs/custom/my-ui.el @@ -1,4 +1,4 @@ -;;; fcuny-ui -- configure UI elements +;;;my-ui -- configure UI elements ;;; Commentary: ;;; Code: @@ -123,5 +123,5 @@ (add-hook 'help-mode-hook #'visual-line-mode) -(provide 'fcuny-ui) -;;; fcuny-ui.el ends here +(provide 'my-ui) +;;; my-ui.el ends here diff --git a/emacs/init.el b/emacs/init.el index b9409a0..534f116 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -39,7 +39,7 @@ (advice-add 'package-install :before 'my/package-install-refresh-contents) (require 'my-settings (expand-file-name "custom/my-settings" user-emacs-directory)) -(require 'fcuny-ui (expand-file-name "custom/fcuny-ui" user-emacs-directory)) +(require 'my-ui (expand-file-name "custom/my-ui" user-emacs-directory)) (require 'fcuny-navigation (expand-file-name "custom/fcuny-navigation" user-emacs-directory)) (require 'fcuny-edit (expand-file-name "custom/fcuny-edit" user-emacs-directory)) (require 'fcuny-text (expand-file-name "custom/fcuny-text" user-emacs-directory)) |