diff --git a/config.org b/config.org index 1a40253..b81067b 100644 --- a/config.org +++ b/config.org @@ -204,3 +204,12 @@ (setq recentf-exclude '("~/.emacs.d/.cache/treemacs-persist"))) #+end_src +** Ido Mode + +#+begin_src emacs-lisp + (setq ido-ignore-buffers + '("\\` " "^\*")) ;; Ignore buffers that start with a space or * + + (ido-mode 1) + (ido-everywhere 1) +#+end_src