Moving to Doom Emacs!

This commit is contained in:
Derek Taylor
2019-12-16 20:21:19 -06:00
parent d9f2f456f1
commit d4b4c33550
683 changed files with 51877 additions and 100 deletions

View File

@@ -0,0 +1,19 @@
;;; tools/gist/autoload/evil.el -*- lexical-binding: t; -*-
;;;###if (featurep! :editor evil)
;;;###autoload (autoload '+gist:send "tools/gist/autoload/evil" nil t)
(evil-define-operator +gist:send (bang)
"Create a private gist from the buffer. If BANG then make it public."
:type inclusive :repeat nil
(interactive "<!>")
(if bang
(gist-region-or-buffer)
(gist-region-or-buffer-private)))
;;;###autoload (autoload '+gist:list "tools/gist/autoload/evil" nil t)
(evil-define-command +gist:list (&optional username)
"Pop up a listing of gists."
(interactive "<a>")
(if username
(gist-list-user username)
(gist-list)))