summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'init.el')
-rw-r--r--init.el13
1 files changed, 11 insertions, 2 deletions
diff --git a/init.el b/init.el index 36c2bed..134b81a 100644 --- a/init.el +++ b/init.el
@@ -920,7 +920,7 @@
920 (comint-mode-map . comint-mode-hook) 920 (comint-mode-map . comint-mode-hook)
921 (sly-mrepl-mode-map . sly-mrepl-hook))) 921 (sly-mrepl-mode-map . sly-mrepl-hook)))
922 (with-eval-after-load 'orderless 922 (with-eval-after-load 'orderless
923 (:option consult--regexp-compiler 'consult--orderless-regexp-compiler)))) 923 (:option consult--regexp-compiler #'consult--orderless-regexp-compiler))))
924 924
925(setup (:straight consult-dir) 925(setup (:straight consult-dir)
926 (:+key "C-x C-d" #'consult-dir) 926 (:+key "C-x C-d" #'consult-dir)
@@ -1278,7 +1278,16 @@ See also `crux-reopen-as-root-mode'."
1278 "C-e" #'mwim-end)) 1278 "C-e" #'mwim-end))
1279 1279
1280(setup (:straight orderless) 1280(setup (:straight orderless)
1281 (:option completion-styles '(orderless))) 1281 (:also-load +orderless)
1282 (:option completion-styles '(substring orderless basic)
1283 completion-category-defaults nil
1284 completion-category-overrides
1285 '((file (styles partial-completion))
1286 (command (styles +orderless-with-initialism))
1287 (variable (styles +orderless-with-initialism))
1288 (symbol (styles +orderless-with-initialism)))
1289 orderless-component-separator #'orderless-escapable-split-on-space
1290 orderless-style-dispatchers '(+orderless-dispatch)))
1282 1291
1283(setup (:straight org-appear) 1292(setup (:straight org-appear)
1284 (:option org-appear-autoemphasis t 1293 (:option org-appear-autoemphasis t