diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-11-03 19:34:03 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2022-11-03 19:34:03 +0100 |
commit | 03af4e81538f88a0fdb519d54278d85b27d0a150 (patch) | |
tree | 38d6cb258e72dd1f4e2c93a54d8f46a26187c066 /emacs.el | |
parent | 93e55e66ae1bd086f186fdbc491f8185959cae05 (diff) |
Fix Emacs geiser configuration
Diffstat (limited to 'emacs.el')
-rw-r--r-- | emacs.el | 13 |
1 files changed, 5 insertions, 8 deletions
@@ -38,9 +38,11 @@ 'ac-geiser-setup) (add-hook 'geiser-repl-mode-hook 'ac-geiser-setup) -(eval-after-load "auto-complete" - '(add-to-list 'ac-modes - 'geiser-repl-mode)) +(with-eval-after-load 'auto-complete + (add-to-list 'ac-modes + 'geiser-repl-mode-hook)) +(with-eval-after-load 'geiser-guile + (add-to-list 'geiser-guile-load-path "~/src/aisaka")) ;; Edit the code based on the S-expression structure (require 'paredit) @@ -96,8 +98,3 @@ ;; Enable the column-80 line (global-display-fill-column-indicator-mode 1) (setq-default display-fill-column-indicator-column 79) - -;;; Import GUIX repository -;;; https://guix.gnu.org/manual/en/html_node/The-Perfect-Setup.html -(with-eval-after-load 'geiser-guile - (add-to-list 'geiser-guile-load-path "~/src/aisaka")) |