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.