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.
20 lines
390 B
20 lines
390 B
2 years ago
|
;;; dot-core-customize.el --- -*- lexical-binding: t; -*-
|
||
|
|
||
|
;;; Commentary:
|
||
|
|
||
|
;; ??
|
||
|
|
||
|
;;; Code:
|
||
|
|
||
|
;; -----------------------------------------
|
||
|
;; Customizations
|
||
|
|
||
|
;; Store customize file separately, don't freak out when it's not found.
|
||
|
|
||
|
(setq custom-file (expand-file-name "custom.el" dot-etc-dir))
|
||
|
(load custom-file 'noerror)
|
||
|
|
||
|
(provide 'dot-core-customize)
|
||
|
|
||
|
;;; dot-core-customize.el ends here
|