Ignore compiled zsh functions in counsel
This commit is contained in:
parent
b05b4ad6e9
commit
5fdb1c55b8
1 changed files with 3 additions and 1 deletions
|
@ -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.
|
||||||
|
|
Loading…
Reference in a new issue