dotfiles

🎜 Clone'em, tweak'em, stick'em in your $HOME 🎝
git clone https://git.kevinlegouguec.net/dotfiles
Log | Files | Refs | README

commit cc7f3629d2da9f2fdf96e588562066fb3a229bfb
parent 89746be4b01d3114f726dfa9ffc509cd593d26d5
Author: KΓ©vin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Sun, 24 Mar 2019 17:13:18 +0100

Cosmetics

… an interesting game of whack-a-quote.

I thought ("..." . ?…) might work, but alas…

Diffstat:
M.emacs | 16++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/.emacs b/.emacs @@ -63,18 +63,18 @@ (mapc (lambda (item) (quail-defrule (car item) (cdr item) "my/input-method")) - '( + (list ;; Punctuation - ("..." ?…) + '("..." ?…) ;; Math symbols - ("~~" ?β‰ˆ) ("~=" ?β‰Š) ("^=" ?≙) - ("-->" ?β†’) ("-/>" ?↛) ("==>" ?β‡’) ("=/>" ?⇏) - ("<--" ?←) ("</-" ?β†š) ("<==" ?⇐) ("</=" ?⇍) - ("<->" ?↔) ("<=>" ?⇔) + '("~~" ?β‰ˆ) '("~=" ?β‰Š) '("^=" ?≙) + '("-->" ?β†’) '("-/>" ?↛) '("==>" ?β‡’) '("=/>" ?⇏) + '("<--" ?←) '("</-" ?β†š) '("<==" ?⇐) '("</=" ?⇍) + '("<->" ?↔) '("<=>" ?⇔) ;; Emojis - ("\\o/" ?πŸ™Œ) ("\\m/" ?🀘) + '("\\o/" ?πŸ™Œ) '("\\m/" ?🀘) ;; Pictograms - ("/!\\" ?⚠))) + '("/!\\" ?⚠))) ;; What's life without a little risk? (setq disabled-command-function nil)