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 735ca61..c78f482 100644 --- a/init.el +++ b/init.el
@@ -922,7 +922,7 @@
922 (comint-mode-map . comint-mode-hook) 922 (comint-mode-map . comint-mode-hook)
923 (sly-mrepl-mode-map . sly-mrepl-hook))) 923 (sly-mrepl-mode-map . sly-mrepl-hook)))
924 (with-eval-after-load 'orderless 924 (with-eval-after-load 'orderless
925 (:option consult--regexp-compiler 'consult--orderless-regexp-compiler)))) 925 (:option consult--regexp-compiler #'consult--orderless-regexp-compiler))))
926 926
927(setup (:straight consult-dir) 927(setup (:straight consult-dir)
928 (:+key "C-x C-d" #'consult-dir) 928 (:+key "C-x C-d" #'consult-dir)
@@ -1280,7 +1280,16 @@ See also `crux-reopen-as-root-mode'."
1280 "C-e" #'mwim-end)) 1280 "C-e" #'mwim-end))
1281 1281
1282(setup (:straight orderless) 1282(setup (:straight orderless)
1283 (:option completion-styles '(orderless))) 1283 (:also-load +orderless)
1284 (:option completion-styles '(substring orderless basic)
1285 completion-category-defaults nil
1286 completion-category-overrides
1287 '((file (styles partial-completion))
1288 (command (styles +orderless-with-initialism))
1289 (variable (styles +orderless-with-initialism))
1290 (symbol (styles +orderless-with-initialism)))
1291 orderless-component-separator #'orderless-escapable-split-on-space
1292 orderless-style-dispatchers '(+orderless-dispatch)))
1284 1293
1285(setup (:straight org-appear) 1294(setup (:straight org-appear)
1286 (:option org-appear-autoemphasis t 1295 (:option org-appear-autoemphasis t