aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshton Wiersdorf <mail@wiersdorf.dev>2023-08-01 22:16:47 -0600
committerAshton Wiersdorf <mail@wiersdorf.dev>2023-08-01 22:16:47 -0600
commitac890acfa3b35237e8db75f03b480e2cf6eb49c8 (patch)
tree1c93bbcc5ec3651c134e3dc03c3434f1213c7c12
parent85e198896f2ed91851f48e7f455717625c1a425d (diff)
Misc. tweaks
-rw-r--r--init.el2
-rw-r--r--mixins/base.el10
-rw-r--r--mixins/researcher.el2
3 files changed, 8 insertions, 6 deletions
diff --git a/init.el b/init.el
index 5464a44..f7316d2 100644
--- a/init.el
+++ b/init.el
@@ -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:
;;;