diff options
Diffstat (limited to '.emacs')
| -rw-r--r-- | .emacs | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -1,5 +1,17 @@ (require 'package) (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) -(setq custom-file "~/Code/home/custom.el") -(load custom-file) (package-initialize) +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(backup-directory-alist '(("." . "~/Backups"))) + '(custom-file "~/Code/home/.emacs") + '(package-selected-packages '(ledger-mode))) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + ) |
