diff --git a/.config/emacs/config/backups.el b/.emacs.d/config/backups.el similarity index 80% rename from .config/emacs/config/backups.el rename to .emacs.d/config/backups.el index 7f5d39e..0b3e48b 100644 --- a/.config/emacs/config/backups.el +++ b/.emacs.d/config/backups.el @@ -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 diff --git a/.config/emacs/config/base.el b/.emacs.d/config/base.el similarity index 100% rename from .config/emacs/config/base.el rename to .emacs.d/config/base.el diff --git a/.config/emacs/config/c.el b/.emacs.d/config/c.el similarity index 100% rename from .config/emacs/config/c.el rename to .emacs.d/config/c.el diff --git a/.config/emacs/config/calendar.el b/.emacs.d/config/calendar.el similarity index 100% rename from .config/emacs/config/calendar.el rename to .emacs.d/config/calendar.el diff --git a/.config/emacs/config/dev.el b/.emacs.d/config/dev.el similarity index 100% rename from .config/emacs/config/dev.el rename to .emacs.d/config/dev.el diff --git a/.config/emacs/config/ediff.el b/.emacs.d/config/ediff.el similarity index 100% rename from .config/emacs/config/ediff.el rename to .emacs.d/config/ediff.el diff --git a/.config/emacs/config/functions.el b/.emacs.d/config/functions.el similarity index 100% rename from .config/emacs/config/functions.el rename to .emacs.d/config/functions.el diff --git a/.config/emacs/config/git.el b/.emacs.d/config/git.el similarity index 100% rename from .config/emacs/config/git.el rename to .emacs.d/config/git.el diff --git a/.config/emacs/config/gpg.el b/.emacs.d/config/gpg.el similarity index 100% rename from .config/emacs/config/gpg.el rename to .emacs.d/config/gpg.el diff --git a/.config/emacs/config/man.el b/.emacs.d/config/man.el similarity index 100% rename from .config/emacs/config/man.el rename to .emacs.d/config/man.el diff --git a/.config/emacs/config/multiple-cursors.el b/.emacs.d/config/multiple-cursors.el similarity index 100% rename from .config/emacs/config/multiple-cursors.el rename to .emacs.d/config/multiple-cursors.el diff --git a/.config/emacs/config/org.el b/.emacs.d/config/org.el similarity index 100% rename from .config/emacs/config/org.el rename to .emacs.d/config/org.el diff --git a/.config/emacs/config/pass.el b/.emacs.d/config/pass.el similarity index 100% rename from .config/emacs/config/pass.el rename to .emacs.d/config/pass.el diff --git a/.config/emacs/config/python.el b/.emacs.d/config/python.el similarity index 100% rename from .config/emacs/config/python.el rename to .emacs.d/config/python.el diff --git a/.config/emacs/config/ripgrep.el b/.emacs.d/config/ripgrep.el similarity index 100% rename from .config/emacs/config/ripgrep.el rename to .emacs.d/config/ripgrep.el diff --git a/.config/emacs/config/rust.el b/.emacs.d/config/rust.el similarity index 100% rename from .config/emacs/config/rust.el rename to .emacs.d/config/rust.el diff --git a/.config/emacs/config/tramp.el b/.emacs.d/config/tramp.el similarity index 100% rename from .config/emacs/config/tramp.el rename to .emacs.d/config/tramp.el diff --git a/.config/emacs/config/yaml.el b/.emacs.d/config/yaml.el similarity index 100% rename from .config/emacs/config/yaml.el rename to .emacs.d/config/yaml.el diff --git a/.config/emacs/init.el b/.emacs.d/init.el similarity index 92% rename from .config/emacs/init.el rename to .emacs.d/init.el index 80ff134..c1bc485 100644 --- a/.config/emacs/init.el +++ b/.emacs.d/init.el @@ -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)))))