diff options
| author | Daniel <[email protected]> | 2024-05-06 16:28:42 -0400 |
|---|---|---|
| committer | Daniel <[email protected]> | 2024-05-06 16:28:42 -0400 |
| commit | 221ab3bb418ff677430aedbda5083238ce576f02 (patch) | |
| tree | 31372f3eb04461464a395518f2bc0d815c951287 | |
| parent | 8779634a50fecc6153edf6b06b1ed9b515f5b331 (diff) | |
fix imenu depth and consult-line
| -rw-r--r-- | bard-emacs-modules/bard-emacs-completion.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bard-emacs-modules/bard-emacs-completion.el b/bard-emacs-modules/bard-emacs-completion.el index 0170d9d..987f80c 100644 --- a/bard-emacs-modules/bard-emacs-completion.el +++ b/bard-emacs-modules/bard-emacs-completion.el @@ -87,6 +87,7 @@ ("M-s M-h" . consult-history) ("M-s M-y" . consult-yank-pop) ("M-s M-o" . consult-outline) + ("M-s M-l" . consult-line) :config (setq consult-find-args (concat "find . -not ( " @@ -146,7 +147,7 @@ (use-package imenu-list :config (setq imenu-list-idle-update-delay 0.0) - (setq org-imenu-depth 3) + (setq org-imenu-depth 2) :bind (("C-`" . imenu-list-smart-toggle))) |
