From de1c69934c148c99473ef9ca0d20ccb49db75bbb Mon Sep 17 00:00:00 2001 From: Mitch Tishmack Date: Sun, 30 Apr 2017 12:10:30 -0500 Subject: [PATCH] init.el: Move cscope-setup to :config from :init That way new install/setups of emacs work. --- emacs.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacs.org b/emacs.org index e5f5f65..c40725c 100644 --- a/emacs.org +++ b/emacs.org @@ -1150,7 +1150,7 @@ Instead of text might as well get a decent mode hook going here. #+BEGIN_SRC emacs-lisp (use-package xcscope :defer t - :init (progn (cscope-setup)) + :config (progn (cscope-setup)) ) #+END_SRC