Compare commits
3 Commits
ad1b942f6c
...
6bde92d069
Author | SHA1 | Date | |
---|---|---|---|
6bde92d069 | |||
bcc62941e5 | |||
f37fbf2a5b |
4
.gitignore
vendored
4
.gitignore
vendored
@ -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/
|
||||
|
@ -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"))
|
||||
|
@ -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.
|
||||
)
|
Loading…
Reference in New Issue
Block a user