diff options
Diffstat (limited to 'init.el')
| -rw-r--r-- | init.el | 9 |
1 files changed, 6 insertions, 3 deletions
| @@ -39,9 +39,6 @@ | |||
| 39 | (user-init-file custom-file)) | 39 | (user-init-file custom-file)) |
| 40 | (apply fn args))) | 40 | (apply fn args))) |
| 41 | 41 | ||
| 42 | (advice-add #'enable-command :around #'$adv-write-to-sane-paths) | ||
| 43 | (advice-add #'disable-command :around #'$adv-write-to-sane-paths) | ||
| 44 | |||
| 45 | (use-package files | 42 | (use-package files |
| 46 | :defer t | 43 | :defer t |
| 47 | :custom | 44 | :custom |
| @@ -76,6 +73,12 @@ | |||
| 76 | 73 | ||
| 77 | (add-to-list 'load-path (expand-file-name "arkta" user-emacs-directory)) | 74 | (add-to-list 'load-path (expand-file-name "arkta" user-emacs-directory)) |
| 78 | 75 | ||
| 76 | (use-package novice | ||
| 77 | :defer t | ||
| 78 | :config | ||
| 79 | (advice-add #'enable-command :around #'$adv-write-to-sane-paths) | ||
| 80 | (advice-add #'disable-command :around #'$adv-write-to-sane-paths)) | ||
| 81 | |||
| 79 | ;; Improve Emacs security somewhat | 82 | ;; Improve Emacs security somewhat |
| 80 | (setq gnutls-min-prime-bits 3072 | 83 | (setq gnutls-min-prime-bits 3072 |
| 81 | gnutls-verify-error (and (fboundp 'gnutls-available-p) | 84 | gnutls-verify-error (and (fboundp 'gnutls-available-p) |