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.

62 lines
1.4 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. ;; Allows links to open a Dired buffer (useful in Org links for example)
  8. ;; [[my link][dired:~/myexample]]
  9. (use-package ol-dired
  10. :demand t
  11. :load-path "custom/ol-dired")
  12. ;; Open a mail message in MacOS Mail app
  13. (use-package ol-message
  14. :if (eq system-type 'darwin)
  15. :demand t
  16. :load-path "custom/ol-message")
  17. ;; Login to SF orgs via an Org link
  18. ;; [[Login to an org][sflogin:lolson@eaglecrk.com.myorgusername]]
  19. (use-package ol-sflogin
  20. :demand t
  21. :load-path "custom/ol-sflogin")
  22. (use-package sfdx
  23. :load-path "custom/sfdx"
  24. :bind
  25. ("M-<tab>" . sfdx/next-component-file)
  26. ("C-x C-l s" . sfdx/transient-action))
  27. (use-package vlocitemacs
  28. :load-path "custom/vlocitemacs"
  29. :bind
  30. ("C-x C-l v" . vlo/transient-action))
  31. (use-package json
  32. :straight (
  33. :type git
  34. :host github
  35. :repo "ryancrum/json.el"
  36. :branch "master")
  37. :commands (json-read json-read-from-string json-encode))
  38. (use-package gcode
  39. :straight (
  40. :type git
  41. :host github
  42. :repo "jasapp/gcode-emacs"
  43. :branch "master")
  44. :commands gcode-mode)
  45. (provide '07_5-custom-created-packages)
  46. ;;; 07_5-custom-created-packages.el ends here