diff options
author | Raúl Benencia <id@rbenencia.name> | 2024-10-20 09:39:15 -0700 |
---|---|---|
committer | Raúl Benencia <id@rbenencia.name> | 2024-10-20 09:39:15 -0700 |
commit | 812e84f152e76621d09c806c97e1443c3ea1d209 (patch) | |
tree | 403f295448531577d6684cb925bafae56ccf1355 /.emacs.d/init.el | |
parent | cbe8c220292603e5fc0d7100af9479bcad2b1e85 (diff) |
emacs: do not save desktop on exit
beframe does not play well with saved desktops. I'll disable this
option for now to experiment with this workflow.
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r-- | .emacs.d/init.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index e227e57..5cc549d 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -131,10 +131,10 @@ ;; Remember and restore cursor information (save-place-mode 1) -;; Desktop -(setq desktop-path `(,user-emacs-directory)) -(setq desktop-base-file-name "desktop") -(desktop-save-mode 1) +;;;; Desktop +;; (setq desktop-path `(,user-emacs-directory)) +;; (setq desktop-base-file-name "desktop") +;; (desktop-save-mode 1) ;; It's easier to get to magit if symlinks are followed. (setq vc-follow-symlinks t) |