diff options
author | Alan Pearce | 2017-03-17 22:03:09 +0100 |
---|---|---|
committer | Alan Pearce | 2017-03-17 22:03:09 +0100 |
commit | 612bf6ce1be2b10ec47f7ac14460059e5b791160 (patch) | |
tree | c5a8bc5c128005d0acf02fbfaa6268c790f8e7ca /emacs/.emacs.d/init.org | |
parent | e23229baf851e14630889b21d956e23f13aae870 (diff) | |
download | nixfiles-612bf6ce1be2b10ec47f7ac14460059e5b791160.tar.lz nixfiles-612bf6ce1be2b10ec47f7ac14460059e5b791160.tar.zst nixfiles-612bf6ce1be2b10ec47f7ac14460059e5b791160.zip |
Emacs: Fix replace load issue
Diffstat (limited to 'emacs/.emacs.d/init.org')
-rw-r--r-- | emacs/.emacs.d/init.org | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 151efbf4..4d9e5fa7 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -2436,10 +2436,8 @@ it much clearer. It’s especially helpful for protoyping and refactoring. ** replace #+BEGIN_SRC emacs-lisp -(use-package replace - :defer t - :config (progn - (setq case-replace nil))) +(with-eval-after-load "replace.el" + (setq case-replace nil)) #+END_SRC ** visual-regexp |