aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--emacs/.emacs.d/init.org6
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org
index 362f393..dad489c 100644
--- a/emacs/.emacs.d/init.org
+++ b/emacs/.emacs.d/init.org
@@ -361,6 +361,12 @@ To start off, first I need to enable lexical binding.
(require 'counsel)
#+END_SRC
+ Hide dotfiles in =counsel-find-file=.
+
+ #+BEGIN_SRC emacs-lisp
+ (setq counsel-find-file-ignore-regexp "\\`\\.")
+ #+END_SRC
+
Enable Counsel.
#+BEGIN_SRC emacs-lisp