diff options
author | Case Duckworth | 2022-01-14 21:03:36 -0600 |
---|---|---|
committer | Case Duckworth | 2022-01-14 21:03:36 -0600 |
commit | 0495456fb904bf291a71ff87d59a5dda5d0c298d (patch) | |
tree | 3bf15e38022280362091cd699ce8da21d2a2a27a /init.el | |
parent | Merge branch 'main' of https://tildegit.org/acdw/emacs (diff) | |
download | emacs-0495456fb904bf291a71ff87d59a5dda5d0c298d.tar.gz emacs-0495456fb904bf291a71ff87d59a5dda5d0c298d.zip |
Ch ch ch changes
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 13 |
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 |