summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--emacs/custom/my-ui.el (renamed from emacs/custom/fcuny-ui.el)6
-rw-r--r--emacs/init.el2
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))