My attempt to optimize my emacs load time <1 second
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.

55 lines
1.1 KiB

  1. ;;; 07_5-custom-created-packages --- Provide all the custom code I've created
  2. ;;; Commentary:
  3. ;;; Code:
  4. (use-package convert-to-table
  5. :commands leo/convert-to-table
  6. :load-path "custom/convert-to-table")
  7. (use-package ol-dired
  8. :demand t
  9. :load-path "custom/ol-dired")
  10. (use-package ol-message
  11. :demand t
  12. :load-path "custom/ol-message")
  13. (use-package ol-sflogin
  14. :demand t
  15. :load-path "custom/ol-sflogin")
  16. (use-package sfdx
  17. :load-path "custom/sfdx"
  18. :bind
  19. ("M-<tab>" . sfdx/next-component-file)
  20. ("C-x C-l s" . sfdx/transient-action))
  21. (use-package json
  22. :straight (
  23. :type git
  24. :host github
  25. :repo "ryancrum/json.el"
  26. :branch "master")
  27. :commands (json-read json-read-from-string json-encode))
  28. (use-package gcode
  29. :straight (
  30. :type git
  31. :host github
  32. :repo "jasapp/gcode-emacs"
  33. :branch "master")
  34. :commands gcode-mode)
  35. (use-package vlocitemacs
  36. :load-path "custom/vlocitemacs"
  37. :bind
  38. ("C-x C-l v" . vlo/transient-action))
  39. (provide '07_5-custom-created-packages)
  40. ;;; 07_5-custom-created-packages.el ends here