From 50a05049fd601340affcc31bd3b6252a419541b9 Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Thu, 7 Nov 2019 17:01:35 -0500 Subject: [PATCH] Add restclient --- emacs/init.org | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/emacs/init.org b/emacs/init.org index 662a122..f5f1e7a 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -1024,7 +1024,8 @@ Literate programming! (ditaa . t) (ledger . t) (sql . t) - (jq . t))))) + (jq . t) + (restclient . t))))) #+END_SRC Get rid of the confirmation prompt: @@ -3333,6 +3334,19 @@ A fuzzy-finder for notes. (switch-to-buffer "*redis-cli*")) (error "Can't find redis-cli")))) #+END_SRC +* Restclient +Explore APIs from within Emacs! +#+BEGIN_SRC emacs-lisp + (use-package restclient) + + (use-package company-restclient + :after (restclient company) + :config + (add-to-list 'company-backends 'company-restclient)) + + (use-package ob-restclient + :after (restclient)) +#+END_SRC * IMenu Get a nice IMenu sidebar: #+BEGIN_SRC emacs-lisp