diff options
author | David Thompson <dthompson2@worcester.edu> | 2022-08-29 21:02:29 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2022-08-29 21:02:29 -0400 |
commit | 59b042a666edd6f854ee65d52474cff8efeeb233 (patch) | |
tree | fa9e97c2bcc0c70482c0fe97a90ffc387ad55102 | |
parent | c5a431c3b7a6833d90f2f7a1a0ac310cecfaa2fc (diff) |
Update Emacs config.
-rw-r--r-- | dotfiles/.emacs.d/init.el | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/dotfiles/.emacs.d/init.el b/dotfiles/.emacs.d/init.el index f418073..e032018 100644 --- a/dotfiles/.emacs.d/init.el +++ b/dotfiles/.emacs.d/init.el @@ -286,6 +286,8 @@ might be bad." (use-package geiser :config (use-package geiser-guile) + ;; Flycheck-guile only works if Geiser is around. + (use-package flycheck-guile) ;; Use project-aware REPL buffer naming so it's clear which REPL ;; belongs to which project. (defun repl-buffer-name (impl) @@ -301,11 +303,6 @@ might be bad." ;; One REPL per project, please! (geiser-repl-per-project-p t))) -(use-package flycheck-guile) - -;; Use scheme-mode for Skribe documents. -(add-to-list 'auto-mode-alist '("\\.skr$" . scheme-mode)) - ;; Hacked to properly indent keywords. Thanks to mark_weaver. (defun scheme-indent-function (indent-point state) "Scheme mode function for the value of the variable `lisp-indent-function'. |