diff options
author | William Carroll <wpcarro@gmail.com> | 2018-05-29T20·21-0400 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2018-07-19T16·00-0400 |
commit | fc283b7a23bdcdc7d908172632f292b494072f34 (patch) | |
tree | 76ed27d265fd891209fddfef77d3a81f60aa5d7f | |
parent | bdfb83dc2c23ae4fe8f1f6f73477bd04d8af7095 (diff) |
Support graphql module
Providing the module to dump GQL functionality to my config. Hopefully this gets more fleshed out at a later date.
-rw-r--r-- | emacs.d/wpc/packages/wpc-graphql.el | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/emacs.d/wpc/packages/wpc-graphql.el b/emacs.d/wpc/packages/wpc-graphql.el new file mode 100644 index 000000000000..ea19e130ce32 --- /dev/null +++ b/emacs.d/wpc/packages/wpc-graphql.el @@ -0,0 +1,17 @@ +;;; wpc-graphql.el --- Packages related to GraphQL -*- lexical-binding: t -*- +;; Author: William Carroll <wpcarro@gmail.com> + +;;; Commentary: +;; Hosts various packages and functions to make working with GraphQL more +;; enjoyable. + +;;; Code: + +(quelpa '(graphql.el + :fetcher github + :repo "vermiculus/graphql.el")) +(require 'graphql.el) + + +(provide 'wpc-graphql) +;;; wpc-graphql.el ends here |