diff options
| author | Jack Jamison <jackqjamison@gmail.com> | 2026-07-29 19:47:07 -0400 |
|---|---|---|
| committer | Jack Jamison <jackqjamison@gmail.com> | 2026-07-29 19:47:07 -0400 |
| commit | 18b2811e9f4a9dbb75237768cee38757d1b10821 (patch) | |
| tree | e7ac03cd847204b616db3ce09743b095f5783535 /.config/emacs | |
| parent | 76c7d4877d71a853949243351068cb82617cc3cb (diff) | |
fixes and improvements
Diffstat (limited to '.config/emacs')
| -rw-r--r-- | .config/emacs/init.el | 2 | ||||
| -rw-r--r-- | .config/emacs/style.el | 2 | ||||
| -rw-r--r-- | .config/emacs/ui.el | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el index 34c7295..27b7828 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -24,7 +24,7 @@ :demand t) ;; no custom and lockfiles -(setq custom-file null-device) +(setq custom-file (make-temp-file "emacs-custom-")) (setq create-lockfiles nil) ;; backups in one folder diff --git a/.config/emacs/style.el b/.config/emacs/style.el index 0084c70..9ae5ea9 100644 --- a/.config/emacs/style.el +++ b/.config/emacs/style.el @@ -4,4 +4,4 @@ (load-theme 'doom-one t)) ;; font -(add-to-list 'default-frame-alist '(font . "ComicShannsMono-12")) +(add-to-list 'default-frame-alist '(font . "ComicMono-12")) diff --git a/.config/emacs/ui.el b/.config/emacs/ui.el index b588e0c..e8c547e 100644 --- a/.config/emacs/ui.el +++ b/.config/emacs/ui.el @@ -54,4 +54,4 @@ :custom (completion-styles '(orderless partial-completion basic)) (completion-category-defaults nil) - (completion-category-overrides '((file (styles partial-completion))))) + (completion-category-overrides '((file (styles orderless partial-completion))))) |
