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.

32 lines
610 B

  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. :defer 5
  6. :load-path "custom/convert-to-table")
  7. (use-package ol-dired
  8. :defer 5
  9. :load-path "custom/ol-dired")
  10. (use-package sfdx
  11. :defer 5
  12. :load-path "custom/sfdx"
  13. :bind
  14. ("M-<tab>" . sfdx/next-component-file)
  15. ("C-x C-l s" . sfdx/transient-action))
  16. (use-package vlocitemacs
  17. :defer 5
  18. :load-path "custom/vlocitemacs"
  19. :bind
  20. ("C-x C-l v" . vlo/transient-action))
  21. (provide '07_5-custom-created-packages)
  22. ;;; 07_5-custom-created-packages.el ends here