27 lines
919 B
EmacsLisp
27 lines
919 B
EmacsLisp
;;; custom.el --- -*- lexical-binding: t; -*-
|
|
|
|
;; Copyright (C) 2021 Colin Powell
|
|
|
|
;; Author: Colin Powell <colin@unbl.ink>
|
|
;; Keywords:
|
|
(custom-set-variables
|
|
;; custom-set-variables was added by Custom.
|
|
;; If you edit it by hand, you could mess it up, so be careful.
|
|
;; Your init file should contain only one such instance.
|
|
;; If there is more than one, they won't work right.
|
|
'(package-selected-packages
|
|
'(moe-theme vulpea exec-path-from-shell org-fancy-priorities hackernews selectrum))
|
|
'(when
|
|
(or
|
|
(not
|
|
(boundp 'ansi-term-color-vector))
|
|
(not
|
|
(facep
|
|
(aref ansi-term-color-vector 0))))))
|
|
(custom-set-faces
|
|
;; custom-set-faces was added by Custom.
|
|
;; If you edit it by hand, you could mess it up, so be careful.
|
|
;; Your init file should contain only one such instance.
|
|
;; If there is more than one, they won't work right.
|
|
)
|