Changeset 27ebe67 in dotfiles


Ignore:
Timestamp:
Aug 2, 2022, 4:44:21 AM (2 years ago)
Author:
Mikhail Kirillov <w96k@…>
Branches:
master
Children:
d80bfc6
Parents:
96b30c6
Message:

Add geiser

File:
1 edited

Legend:

Unmodified
Added
Removed
  • emacs/.emacs.d/.emacs-config.org

    r96b30c6 r27ebe67  
    310310   '(tool-bar ((t (:background "grey80" :foreground "grey10"))))
    311311   '(fill-column-indicator ((t (:foreground "grey95"))))
     312   '(hl-line ((t (:background "gray97"))))
    312313   '(fringe ((t (:background "grey90"))))
    313314   '(header-line ((t (:inherit mode-line :background "grey90"))))
     
    967968** Scheme
    968969#+BEGIN_SRC emacs-lisp :tangle init.el
    969   (setq geiser-active-implementations '("guile"))
     970  ;; (setq geiser-active-implementations '("guile"))
    970971#+END_SRC
    971972
     
    14751476** Guix
    14761477#+begin_src emacs-lisp :tangle init.el
     1478  (package-loaded? "geiser-guile")
     1479  (require 'geiser-guile)
     1480
    14771481  (package-loaded? "guix")
    14781482
     1483  (setq geiser-guile-binary "guile")
     1484
    14791485  (with-eval-after-load 'geiser-guile
    1480     (add-to-list 'geiser-guile-load-path "~/projects/guix"))
     1486    (progn
     1487      ;; (require 'compile)
     1488      ;;   (let* ((shell-command "guile -c '(write %load-path)'")
     1489      ;;             (shell-output (shell-command-to-string shell-command))
     1490      ;;             (load-paths (car (read-from-string shell-output))))
     1491      ;;        (dolist (path load-paths)
     1492      ;;          (add-to-list 'compilation-search-path path)))
     1493    (add-to-list 'geiser-guile-load-path "~/projects/guix/")))
    14811494
    14821495  (load-file "~/projects/guix/etc/copyright.el")
    14831496
    14841497  (setq copyright-names-regexp
    1485       (format "%s <%s>" user-full-name user-mail-address))
     1498        (format "%s <%s>" user-full-name user-mail-address))
    14861499#+end_src
    14871500
Note: See TracChangeset for help on using the changeset viewer.