aboutsummaryrefslogtreecommitdiffstats
path: root/emacs/.emacs.d
diff options
context:
space:
mode:
authorGravatar Tom Willemse2016-08-28 01:19:21 +0200
committerGravatar Tom Willemse2016-08-28 01:19:21 +0200
commit77263ce87b66e197d903d48f2ae4b560522e7260 (patch)
tree45fe47d8a2ec2bf87e2971ed384389fa28f3e907 /emacs/.emacs.d
parentcd257205edd1b5044a061c83da433ea7cbb89cbb (diff)
downloadnew-dotfiles-77263ce87b66e197d903d48f2ae4b560522e7260.tar.gz
new-dotfiles-77263ce87b66e197d903d48f2ae4b560522e7260.zip
Fix diminishing counsel
Diffstat (limited to 'emacs/.emacs.d')
-rw-r--r--emacs/.emacs.d/init.org10
1 files changed, 5 insertions, 5 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,17 +305,17 @@ To start off, first I need to enable lexical binding.
(require 'counsel)
#+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.
+ Enable Counsel.
#+BEGIN_SRC emacs-lisp
- (diminish 'counsel-mode)
+ (counsel-mode)
#+END_SRC
- Enable Counsel.
+ 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.
#+BEGIN_SRC emacs-lisp
- (counsel-mode)
+ (diminish 'counsel-mode)
#+END_SRC
* Bookmarks