summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--emacs/custom/my-settings.el (renamed from emacs/custom/fcuny-settings.el)6
-rw-r--r--emacs/init.el2
2 files changed, 4 insertions, 4 deletions
diff --git a/emacs/custom/fcuny-settings.el b/emacs/custom/my-settings.el
index 2746b82..a733004 100644
--- a/emacs/custom/fcuny-settings.el
+++ b/emacs/custom/my-settings.el
@@ -1,4 +1,4 @@
-;;; fcuny-settings.el --- Sets a number of defaults 
+;;; my-settings.el --- Sets a number of defaults
 ;;; Commentary:
 
 ;;; Code:
@@ -61,5 +61,5 @@
     (when (memq window-system '(mac ns))
       (exec-path-from-shell-initialize))))
 
-(provide 'fcuny-settings)
-;;; fcuny-settings.el ends here
+(provide 'my-settings)
+;;; my-settings.el ends here
diff --git a/emacs/init.el b/emacs/init.el
index 1af31de..b9409a0 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -38,7 +38,7 @@
 
 (advice-add 'package-install :before 'my/package-install-refresh-contents)
 
-(require 'fcuny-settings (expand-file-name "custom/fcuny-settings" user-emacs-directory))
+(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 'fcuny-navigation (expand-file-name "custom/fcuny-navigation" user-emacs-directory))
 (require 'fcuny-edit (expand-file-name "custom/fcuny-edit" user-emacs-directory))