custom.el 902 B

1234567891011121314151617181920212223242526
  1. ;;; custom.el --- -*- lexical-binding: t; -*-
  2. ;; Copyright (C) 2021 Colin Powell
  3. ;; Author: Colin Powell <colin@unbl.ink>
  4. ;; Keywords:
  5. (custom-set-variables
  6. ;; custom-set-variables was added by Custom.
  7. ;; If you edit it by hand, you could mess it up, so be careful.
  8. ;; Your init file should contain only one such instance.
  9. ;; If there is more than one, they won't work right.
  10. '(package-selected-packages
  11. '(exec-path-from-shell org-fancy-priorities hackernews selectrum))
  12. '(when
  13. (or
  14. (not
  15. (boundp 'ansi-term-color-vector))
  16. (not
  17. (facep
  18. (aref ansi-term-color-vector 0))))))
  19. (custom-set-faces
  20. ;; custom-set-faces was added by Custom.
  21. ;; If you edit it by hand, you could mess it up, so be careful.
  22. ;; Your init file should contain only one such instance.
  23. ;; If there is more than one, they won't work right.
  24. )