From f37fbf2a5ba7cf16249113853a2a009b8d287de7 Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" Date: Mon, 25 Dec 2023 20:42:29 -0500 Subject: [PATCH] emacs-configuration: Remove custom.el (it is now managed as data) This was missed in ad1b942. --- user-config/emacs/.emacs.d/etc/custom.el | 59 ------------------------ 1 file changed, 59 deletions(-) delete mode 100644 user-config/emacs/.emacs.d/etc/custom.el diff --git a/user-config/emacs/.emacs.d/etc/custom.el b/user-config/emacs/.emacs.d/etc/custom.el deleted file mode 100644 index 8d3f56d..0000000 --- a/user-config/emacs/.emacs.d/etc/custom.el +++ /dev/null @@ -1,59 +0,0 @@ -;; (C) Copyright Collin J. Doering 2022 -;; -;; This program is free software: you can redistribute it and/or modify -;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation, either version 3 of the License, or -;; (at your option) any later version. -;; -;; This program is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;; GNU General Public License for more details. -;; -;; You should have received a copy of the GNU General Public License -;; along with this program. If not, see . - -;; File: custom.el -;; Author: Collin J. Doering -;; Date: Mar 30, 2022 - -(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. - '(custom-safe-themes - '("99ea831ca79a916f1bd789de366b639d09811501e8c092c85b2cb7d697777f93" "2f1518e906a8b60fac943d02ad415f1d8b3933a5a7f75e307e6e9a26ef5bf570" "79278310dd6cacf2d2f491063c4ab8b129fee2a498e4c25912ddaa6c3c5b621e" default)) - '(haskell-notify-p t) - '(haskell-process-auto-import-loaded-modules t) - '(haskell-process-log t) - '(haskell-process-suggest-remove-import-lines t) - '(haskell-stylish-on-save t) - '(haskell-tags-on-save t) - '(safe-local-variable-values - '((eval modify-syntax-entry 43 "'") - (eval modify-syntax-entry 36 "'") - (eval modify-syntax-entry 126 "'") - (eval let - ((root-dir-unexpanded - (locate-dominating-file default-directory ".dir-locals.el"))) - (when root-dir-unexpanded - (let* - ((root-dir - (expand-file-name root-dir-unexpanded)) - (root-dir* - (directory-file-name root-dir))) - (unless - (boundp 'geiser-guile-load-path) - (defvar geiser-guile-load-path 'nil)) - (make-local-variable 'geiser-guile-load-path) - (require 'cl-lib) - (cl-pushnew root-dir* geiser-guile-load-path :test #'string-equal)))) - (eval setq-local guix-directory - (locate-dominating-file default-directory ".dir-locals.el"))))) -(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. - )