diff options
| -rw-r--r-- | init.el | 2 | ||||
| -rw-r--r-- | mixins/base.el | 10 | ||||
| -rw-r--r-- | mixins/researcher.el | 2 | 
3 files changed, 8 insertions, 6 deletions
| @@ -46,7 +46,7 @@  (setq display-time-default-load-average nil) ; this information is useless for most  ;; Automatically reread from disk if the underlying file changes -(setq auto-revert-interval 3) +(setq auto-revert-interval 1)  (setq auto-revert-check-vc-info t)  (global-auto-revert-mode) diff --git a/mixins/base.el b/mixins/base.el index 20bb957..08eb6da 100644 --- a/mixins/base.el +++ b/mixins/base.el @@ -32,10 +32,10 @@  (use-package consult    :ensure t    ;; Other good things to bind: consult-ripgrep, consult-line-multi, -  ;; consult-history, consult-outline, consult-error -  :bind (("C-x b" . consult-buffer) ;; orig. switch-to-buffer -         ("M-y" . consult-yank-pop) ;; orig. yank-pop -         ("C-s" . consult-line))    ;; orig. isearch +  ;; consult-history, consult-outline +  :bind (("C-x b" . consult-buffer) ; orig. switch-to-buffer +         ("M-y" . consult-yank-pop) ; orig. yank-pop +         ("C-s" . consult-line))    ; orig. isearch    :config    ;; Narrowing lets you restrict results to certain groups of candidates    (setq consult-narrow-key "<")) @@ -43,7 +43,7 @@  (use-package embark    :ensure t    :after avy -  :bind (("C-c a" . embark-act)) +  :bind (("C-c a" . embark-act))        ; bind this to an easy key to hit    :init    ;; Add the option to run embark when using avy    (defun bedrock/avy-action-embark (pt) diff --git a/mixins/researcher.el b/mixins/researcher.el index 7cf738c..7f1b5d5 100644 --- a/mixins/researcher.el +++ b/mixins/researcher.el @@ -8,6 +8,8 @@  ;;;  ;;; Highly recommended to enable this mixin with the UI enhancements in  ;;; `base.el', as citar works best with the Vertico completing-read interface. +;;; Also recommended is the `writer.el' mixin, which adds some nice features for +;;; spell-checking etc.  ;;; Contents:  ;;; | 
