X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=dev.org;fp=dev.org;h=0000000000000000000000000000000000000000;hb=87395fc29e64efbbef5c52bb0ac905cea46e6698;hp=75c5e45d18cf46627517c624716e4938432f9306;hpb=7c3660936ebc15b70a005c78df9cd32516e0c196;p=dot-emacs diff --git a/dev.org b/dev.org deleted file mode 100644 index 75c5e45..0000000 --- a/dev.org +++ /dev/null @@ -1,36 +0,0 @@ -Things in development in this separate file, because -we recompile / reparse my-init.org whenever it changes, -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))) -(require 'counsel) -(setq counsel-find-file-at-point t) -#+end_src - - -#+begin_src sh -;; M-3 = test key -(global-set-key (kbd "M-3") 'my-as-off) -(setq x 5) - -#+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