diff options
Diffstat (limited to 'emacs/inits/01-basic.el')
| -rw-r--r-- | emacs/inits/01-basic.el | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/emacs/inits/01-basic.el b/emacs/inits/01-basic.el index 04c2a83..c716998 100644 --- a/emacs/inits/01-basic.el +++ b/emacs/inits/01-basic.el @@ -1,4 +1,4 @@ -;; Time-stamp: <2021-03-22 11h49 EDT (hobbies)> +;; Time-stamp: <2021-04-09 14h21 EDT (hobbies)> ;; ----------------------------------------------------------------------------- ;; Interface @@ -49,10 +49,18 @@ ;; (set-fringe-mode 128) ;; ----------------------------------------------------------------------------- +;; Qubes-specific stuff + +;; For some reason this doesn't seem to work using setq/-defuault and +;; requires... ? +(custom-set-variables + '(epg-gpg-program "/usr/bin/qubes-gpg-client-wrapper")) + +;; ----------------------------------------------------------------------------- ;; Backups (setq backup-by-copying t - backup-directory-alist '((".*" . "~/store/backups/")) + backup-directory-alist '(("." . "/home/user/store/backups/")) delete-old-versions t kept-new-versions 6 kept-old-versions 2 |
