From 77263ce87b66e197d903d48f2ae4b560522e7260 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sun, 28 Aug 2016 01:19:21 +0200 Subject: [PATCH] Fix diminishing counsel --- emacs/.emacs.d/init.org | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 57b0780..d7a6464 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -305,6 +305,12 @@ To start off, first I need to enable lexical binding. (require 'counsel) #+END_SRC + Enable Counsel. + + #+BEGIN_SRC emacs-lisp + (counsel-mode) + #+END_SRC + Don't show that counsel is enabled in the mode-line. It's enabled globally and I'll notice whenever I press M-x for example. @@ -312,12 +318,6 @@ To start off, first I need to enable lexical binding. (diminish 'counsel-mode) #+END_SRC - Enable Counsel. - - #+BEGIN_SRC emacs-lisp - (counsel-mode) - #+END_SRC - * Bookmarks Save bookmarks in my data directory so my =user-emacs-directory= is less cluttered.