diff options
author | Franck Cuny <franck@fcuny.net> | 2022-03-23 07:17:18 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-03-23 07:17:18 -0700 |
commit | e7b08297063b3c9a36de65669e47351fd6cfb448 (patch) | |
tree | 6d051352f7b667501bedd604855f485059931ce4 | |
parent | init: start to simplify the configuration (diff) | |
download | emacs.d-e7b08297063b3c9a36de65669e47351fd6cfb448.tar.gz |
rename fcuny-settings to my-settings
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/my-settings.el (renamed from emacs/custom/fcuny-settings.el) | 6 | ||||
-rw-r--r-- | emacs/init.el | 2 |
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)) |