diff options
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/custom/my-text.el (renamed from emacs/custom/fcuny-text.el) | 6 | ||||
-rw-r--r-- | emacs/init.el | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/emacs/custom/fcuny-text.el b/emacs/custom/my-text.el index 56f1b80..6dfb124 100644 --- a/emacs/custom/fcuny-text.el +++ b/emacs/custom/my-text.el @@ -1,4 +1,4 @@ -;;; fcuny-text.el --- configures +;;; my-text.el --- configures ;;; Commentary: ;;; Code: @@ -35,5 +35,5 @@ (when (executable-find "pandoc") (setq markdown-command "pandoc -f markdown -t html"))) -(provide 'fcuny-text) -;;; fcuny-text.el ends here +(provide 'my-text) +;;; my-text.el ends here diff --git a/emacs/init.el b/emacs/init.el index 54dc616..cd4d7bc 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -42,7 +42,7 @@ (require 'my-ui (expand-file-name "custom/my-ui" user-emacs-directory)) (require 'my-navigation (expand-file-name "custom/my-navigation" user-emacs-directory)) (require 'my-edit (expand-file-name "custom/my-edit" user-emacs-directory)) -(require 'fcuny-text (expand-file-name "custom/fcuny-text" user-emacs-directory)) +(require 'my-text (expand-file-name "custom/my-text" user-emacs-directory)) (require 'fcuny-git (expand-file-name "custom/fcuny-git" user-emacs-directory)) (require 'fcuny-org (expand-file-name "custom/fcuny-org" user-emacs-directory)) (require 'fcuny-conf (expand-file-name "custom/fcuny-conf" user-emacs-directory)) |