diff options
-rw-r--r-- | dotfiles/.emacs.d/init.el | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/dotfiles/.emacs.d/init.el b/dotfiles/.emacs.d/init.el index dad4de9..13928fb 100644 --- a/dotfiles/.emacs.d/init.el +++ b/dotfiles/.emacs.d/init.el @@ -16,8 +16,6 @@ ;; Stop customize from writing to my init file. (setq custom-file "~/.emacs.d/custom.el") - - ;;; ;;; Look and Feel @@ -52,6 +50,17 @@ ;;; +;;; Package Management +;;; + +(use-package guix + :custom + ;; Load modules from the guix obtained via 'guix pull'. + (guix-load-path '("~/.guix/current/share/guile/site/3.0")) + (guix-load-compiled-path '("~/.guix/current/lib/guile/3.0/site-ccache"))) + + +;;; ;;; Dired ;;; @@ -93,6 +102,13 @@ ;;; +;;; Bookmarks +;;; + +(setq bookmark-save-flag 1) + + +;;; ;;; Searching ;;; |