Allow recursive minibuffers

This commit is contained in:
Case Duckworth 2020-09-16 20:23:08 -05:00
parent 32964b40b3
commit a80f901a34
2 changed files with 7 additions and 4 deletions

View File

@ -17,12 +17,13 @@
;;(setq debug-on-error t)
;;; different platforms
(setq acdw/at-work (eq system-type 'windows-nt))
(setq acdw/at-larry (string= (system-name) "larry"))
(setq acdw/at-bax (string= (system-name) "bax"))
(defconst *acdw/at-work* (eq system-type 'windows-nt))
(defconst *acdw/at-larry* (string= (system-name) "larry"))
(defconst *acdw/at-bax* (string= (system-name) "bax"))
(defconst *acdw/at-home* (or *acdw/at-larry* *acdw/at-bax*))
;; this needs to be before bootstrapping straight.el
(when acdw/at-work
(when *acdw/at-work*
(add-to-list 'exec-path "~/bin")
(add-to-list 'exec-path "C:/Users/aduckworth/Downloads/PortableGit/bin"))

View File

@ -174,6 +174,8 @@
(use-package selectrum
:config
(ido-mode -1) ;; not sure why this is necessary
(setq enable-recursive-minibuffers t)
(minibuffer-depth-indicate-mode)
(selectrum-mode 1))
(use-package prescient)