wip
[dot-emacs] / dev.org
1 Things in development in this separate file, because
2 we recompile / reparse my-init.org whenever it changes,
3 and since it's pretty big, it's a bit annoying.
4
5 We need at least one of these, even a blank one to avoid error on startup.
6 #+begin_src emacs-lisp
7 (ivy-mode 1)
8 (add-hook 'text-mode-hook (lambda () (auto-fill-mode t)))
9 #+end_src
10
11
12 * ido
13 #+begin_src emacs-lisp
14 (require 'ido)
15 ;; easier to read with just spaces as separator
16 (setf (nth 2 ido-decorations) " ")
17 ;; note, at one point I liked this, but I don't now.
18 ;;(setq ido-max-prospects 20)
19
20 ;; using counsel/ivy instead
21 ;;(ido-mode t)
22 ;; sets read-file-name-function, and read-buffer-function to ido.
23 ;; searching through the emacs source code, it seems this is used
24 ;; very few if any places.
25 ;;(ido-everywhere t)
26
27 #+end_src