Compare commits

..

No commits in common. "a4ee1d8885323f3f6593d7ea232bd5fde99c0fdf" and "05ad81c63116200bd1a9dea506bde96a4d3093fb" have entirely different histories.

19 changed files with 7 additions and 6 deletions

View file

@ -1,5 +1,5 @@
;; configure backups
(setq backup-directory-alist '(("." . "~/.config/emacs/backups/")
(setq backup-directory-alist '(("." . "~/.emacs.d/backups/")
("/dev/shm" . "/dev/null"))
backup-by-copying t
delete-old-versions t

View file

@ -40,7 +40,7 @@
(require 'use-package)
;; file used for storing customization information
(setq custom-file "~/.config/emacs/custom.el")
(setq custom-file "~/.emacs.d/custom.el")
(load custom-file)
;; set auth-sources
@ -61,7 +61,7 @@ symbols, which are converted to strings, and suffixed with \".el\"."
:group 'config-snippets
:type '(repeat (choice symbol string)))
(defcustom config-snippet-path '("~/.config/emacs/config/")
(defcustom config-snippet-path '("~/.emacs.d/config/")
"Specifies the path in which config snippets are searched"
:group 'config-snippets
:type '(repeat directory))
@ -83,11 +83,12 @@ symbols, which are converted to strings, and suffixed with \".el\"."
ripgrep
rust
tramp
wl
yaml))
(message "Loading\nconfig-snippets: %s\nconfig-snippets-path: %s.el" config-snippets config-snippet-path)
(message "Loading\nconfig-snippets: %s\nconfig-snippets-path: %s" config-snippets config-snippet-path)
(dolist (snippet config-snippets)
(message "snippet: %s.el" snippet)
(message "snippet: %s" snippet)
(dolist (dir config-snippet-path)
(message "dir: %s" dir)
(let ((file-name (expand-file-name (concat dir (if (symbolp snippet)
@ -96,4 +97,4 @@ symbols, which are converted to strings, and suffixed with \".el\"."
(message "loading file")
(if (file-readable-p file-name)
(load-file file-name)
(message "Config snippet not found: %s.el" snippet)))))
(message "Config snippet not found: %s" snippet)))))