X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=dev.org;h=ff214ef36ab8186dec7ebc11a349d021d08acb46;hb=2d1b28652d2fd4eb5917665cf049e0bae4b3277f;hp=f7bceddefa035cc386b305d4ded56b737a10acb8;hpb=3dc7ccc943c54180d31e6a28761778562f8c0be2;p=dot-emacs diff --git a/dev.org b/dev.org index f7bcedd..ff214ef 100644 --- a/dev.org +++ b/dev.org @@ -4,5 +4,24 @@ and since it's pretty big, it's a bit annoying. We need at least one of these, even a blank one to avoid error on startup. #+begin_src emacs-lisp +(ivy-mode 1) +(add-hook 'text-mode-hook (lambda () (auto-fill-mode t))) +#+end_src + + +* ido +#+begin_src emacs-lisp +(require 'ido) +;; easier to read with just spaces as separator +(setf (nth 2 ido-decorations) " ") +;; note, at one point I liked this, but I don't now. +;;(setq ido-max-prospects 20) + +;; using counsel/ivy instead +;;(ido-mode t) +;; sets read-file-name-function, and read-buffer-function to ido. +;; searching through the emacs source code, it seems this is used +;; very few if any places. +;;(ido-everywhere t) #+end_src