Ignore compiled zsh functions in counsel

This commit is contained in:
Tom Willemse 2016-10-17 03:32:33 +02:00
parent b05b4ad6e9
commit 5fdb1c55b8

View file

@ -338,7 +338,9 @@ To start off, first I need to enable lexical binding.
Hide dotfiles in =counsel-find-file=. Hide dotfiles in =counsel-find-file=.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(setq counsel-find-file-ignore-regexp "\\`\\.") (setq counsel-find-file-ignore-regexp
(rx (or (and bos ".")
(and ".zwc" eos))))
#+END_SRC #+END_SRC
Enable Counsel. Enable Counsel.