Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.2 KiB

преди 4 години
  1. (require 'slime)
  2. (define-slime-contrib slime-fancy
  3. "Make SLIME fancy."
  4. (:authors "Matthias Koeppe <mkoeppe@mail.math.uni-magdeburg.de>"
  5. "Tobias C Rittweiler <tcr@freebits.de>")
  6. (:license "GPL")
  7. (:slime-dependencies slime-repl
  8. slime-autodoc
  9. slime-c-p-c
  10. slime-editing-commands
  11. slime-fancy-inspector
  12. slime-fancy-trace
  13. slime-fuzzy
  14. slime-mdot-fu
  15. slime-macrostep
  16. slime-presentations
  17. slime-scratch
  18. slime-references
  19. slime-package-fu
  20. slime-fontifying-fu
  21. slime-trace-dialog)
  22. (:on-load
  23. (slime-trace-dialog-init)
  24. (slime-repl-init)
  25. (slime-autodoc-init)
  26. (slime-c-p-c-init)
  27. (slime-editing-commands-init)
  28. (slime-fancy-inspector-init)
  29. (slime-fancy-trace-init)
  30. (slime-fuzzy-init)
  31. (slime-presentations-init)
  32. (slime-scratch-init)
  33. (slime-references-init)
  34. (slime-package-fu-init)
  35. (slime-fontifying-fu-init)))
  36. (provide 'slime-fancy)