Compare commits

...

3 Commits

Author SHA1 Message Date
Collin J. Doering 6bde92d069
.gitignore: Remove some emacs configuration related items
* .gitignore: These items are no longer needed as no data is ever expected to be written into
this repository.
2023-12-25 20:48:19 -05:00
Collin J. Doering bcc62941e5
home: Move more (the last remaining) files to be managed by guix-home
This follows up on ad1b942, where the entire .emacs.d folder was managed by guix, which is
not what was intended. Now instead only .emacs.d/etc and the explicit files that should be
are shared.
2023-12-25 20:47:20 -05:00
Collin J. Doering f37fbf2a5b
emacs-configuration: Remove custom.el (it is now managed as data)
This was missed in ad1b942.
2023-12-25 20:42:29 -05:00
3 changed files with 3 additions and 64 deletions

4
.gitignore vendored
View File

@ -12,7 +12,3 @@ user-config/emacs/.emacs.d/config.tex
.#*
*.elc
*_minted-config/
user-config/emacs/.emacs.d/var
user-config/emacs/.emacs.d/config.el
user-config/emacs/.emacs.d/etc/transient/

View File

@ -483,7 +483,9 @@ single certifcate used for local development with caddy.")
(".bin/emacs-mail.sh" ,(local-file "../../../user-config/emacs/.bin/emacs-mail.sh" "emacs-mail.sh" #:recursive? #t))
(".bin/org-protocol-open.sh" ,(local-file "../../../user-config/emacs/.bin/org-protocol-open.sh" "org-protocol-open.sh" #:recursive? #t))
(".emacs.d" ,(local-file "../../../user-config/emacs/.emacs.d" "emacs-config" #:recursive? #t))
(".emacs.d/init.el" ,(local-file "../../../user-config/emacs/.emacs.d/init.el"))
(".emacs.d/config.org" ,(local-file "../../../user-config/emacs/.emacs.d/config.org"))
(".emacs.d/etc" ,(local-file "../../../user-config/emacs/.emacs.d/etc" "emacs-etc-config" #:recursive? #t))
(".bin/start-sway.sh" ,(local-file "../../../user-config/sway/.bin/start-sway.sh" "start-sway.sh" #:recursive? #t))
(".xmobarrc" ,(local-file "../../../user-config/xmonad/.xmobarrc" "xmobarrc"))

View File

@ -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 <http://www.gnu.org/licenses/>.
;; File: custom.el
;; Author: Collin J. Doering <collin.doering@rekahsoft.ca>
;; 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.
)