diff options
author | Franck Cuny <franckcuny@gmail.com> | 2016-07-31 20:42:10 -0700 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2016-07-31 20:42:10 -0700 |
commit | 2756f3be7f51c60b6f263dfd62b7fc3e296876a2 (patch) | |
tree | 061b53ceb7fd4e091e158015f23fee7d6551b014 | |
parent | [emacs] aurora files are python code. (diff) | |
download | emacs.d-2756f3be7f51c60b6f263dfd62b7fc3e296876a2.tar.gz |
[emacs] add package gist for emacs.
I want to be able to create/list gists from emacs. Closes #8
-rw-r--r-- | emacs.d/init.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index b08a120..bb3c31e 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -25,6 +25,7 @@ flyspell geiser go-eldoc + gist go-mode helm magit @@ -267,6 +268,8 @@ Return the new window for BUFFER." ;; (use-package python (add-to-list 'auto-mode-alist '("\\.aurora\\'" . python-mode)) ;; :mode ("BUILD\\|\\(\\.\\(py\\|aurora\\)\\)$" . python-mode) +;; configuration for gist +(require 'gist) ;; configuration for racket |