summaryrefslogtreecommitdiff
path: root/.emacs.d
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/init.el9
1 files changed, 8 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 6f87ad5..e7c0787 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -691,9 +691,13 @@
(use-package gnosis
:straight (gnosis :local-repo "~/Dev/emacs-lisp/gnosis")
+ :ensure t
:init (define-prefix-command 'thanos/gnosis-map)
:config
- (setf gnosis-vc-auto-push t)
+ (setf gnosis-vc-auto-push t
+ gnosis-mcq-display-choices nil
+ gnosis-image-width 350
+ gnosis-image-height 350)
:bind (("C-r" . thanos/gnosis-map)
:map thanos/gnosis-map
("r" . 'gnosis-review)
@@ -702,6 +706,9 @@
("d" . 'gnosis-add-deck)
("t" . 'gnosis-test-start)))
+;; Run vc-pull on startup
+(gnosis-vc-pull)
+
(use-package pcomplete-yay
:straight (pcomplete-yay :local-repo "~/Dev/emacs-lisp/pcomplete-yay")
:defer t)