Changeset 27ebe67 in dotfiles
- Timestamp:
- Aug 2, 2022, 4:44:21 AM (2 years ago)
- Branches:
- master
- Children:
- d80bfc6
- Parents:
- 96b30c6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
emacs/.emacs.d/.emacs-config.org
r96b30c6 r27ebe67 310 310 '(tool-bar ((t (:background "grey80" :foreground "grey10")))) 311 311 '(fill-column-indicator ((t (:foreground "grey95")))) 312 '(hl-line ((t (:background "gray97")))) 312 313 '(fringe ((t (:background "grey90")))) 313 314 '(header-line ((t (:inherit mode-line :background "grey90")))) … … 967 968 ** Scheme 968 969 #+BEGIN_SRC emacs-lisp :tangle init.el 969 (setq geiser-active-implementations '("guile"))970 ;; (setq geiser-active-implementations '("guile")) 970 971 #+END_SRC 971 972 … … 1475 1476 ** Guix 1476 1477 #+begin_src emacs-lisp :tangle init.el 1478 (package-loaded? "geiser-guile") 1479 (require 'geiser-guile) 1480 1477 1481 (package-loaded? "guix") 1478 1482 1483 (setq geiser-guile-binary "guile") 1484 1479 1485 (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/"))) 1481 1494 1482 1495 (load-file "~/projects/guix/etc/copyright.el") 1483 1496 1484 1497 (setq copyright-names-regexp 1485 1498 (format "%s <%s>" user-full-name user-mail-address)) 1486 1499 #+end_src 1487 1500
Note:
See TracChangeset
for help on using the changeset viewer.