X-Git-Url: http://47.100.26.94:8080/?a=blobdiff_plain;ds=inline;f=emacs.d%2Fconfig.org;h=b9c0209354016c6c7b34cd2ea56105bfe85f2eb0;hb=6e6b4ae1dae6518a03eaa503382b110f2cc1ca00;hp=63e3373bd3260627e119dd13f30529cc7a4b3ed6;hpb=465ba1c51a6d69453710051de3c7abb52accb10b;p=dotfiles.git diff --git a/emacs.d/config.org b/emacs.d/config.org index 63e3373..b9c0209 100644 --- a/emacs.d/config.org +++ b/emacs.d/config.org @@ -2056,6 +2056,24 @@ irony-company :ensure t) #+END_SRC +** Scheme +Install =guile=, =guile= is an implementation of =Scheme= programming language. +#+BEGIN_SRC sh + brew install guile +#+END_SRC + +#+BEGIN_SRC emacs-lisp :tangle yes :results silent + (setq geiser-scheme-implementation 'guile) +#+END_SRC + +#+BEGIN_SRC scheme + (define a "3") + a +#+END_SRC + +#+RESULTS: +: 3 + ** Racket #+BEGIN_SRC emacs-lisp :tangle yes :results silent (use-package racket-mode