Move emacs config to .config/emacs.

This commit is contained in:
Tom Alexander 2023-10-12 15:30:26 -04:00
parent b94e13d63e
commit c652e60619
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
2 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,7 @@
(use-package diminish)
;; Eglot recommends pulling the latest of the standard libraries it
;; uses from ELPA if you're not tracking the current emacs development
;; uses from ELPA if you're not tracking the current.config/emacsevelopment
;; branch.
(use-package xref
:pin gnu
@ -45,7 +45,7 @@
;; This is an emacs built-in but we're pulling the latest version
:config
(setq recentf-max-saved-items 100)
(setq recentf-save-file (recentf-expand-file-name "~/.emacs.d/private/cache/recentf"))
(setq recentf-save-file (recentf-expand-file-name "~/.config/emacs/private/cache/recentf"))
(recentf-mode 1))
;; Persist history over Emacs restarts. Vertico sorts by history position.

View File

@ -9,7 +9,7 @@
owner: "{{ account_name.stdout }}"
group: "{{ group_name.stdout }}"
loop:
- ".emacs.d/elisp"
- ".config/emacs/elisp"
- name: Configure dotfiles
when: 'emacs_flavor == "full"'
@ -21,9 +21,9 @@
group: "{{ group_name.stdout }}"
loop:
- src: init.el
dest: .emacs.d/init.el
dest: .config/emacs/init.el
- src: early-init.el
dest: .emacs.d/early-init.el
dest: .config/emacs/early-init.el
- name: Configure dotfiles
when: 'emacs_flavor == "plain"'
@ -35,7 +35,7 @@
group: "{{ group_name.stdout }}"
loop:
- src: plainmacs_init.el
dest: .emacs.d/init.el
dest: .config/emacs/init.el
- name: Configure elisp files
when: 'emacs_flavor == "full"'
@ -46,7 +46,7 @@
group: "{{ group_name.stdout }}"
loop:
- src: elisp
dest: .emacs.d/
dest: .config/emacs/
- name: Configure zshrc additional imports
copy: