diff options
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/init.el | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/emacs/init.el b/emacs/init.el index bd53137..ee53100 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -372,8 +372,7 @@ The misspelled word is taken from OVERLAY. WORD is the corrected word." (use-package recentf :hook (after-init . recentf-mode) :custom - (recentf-max-menu-items 25) - (recentf-save-file "~/.config/emacs/recentf")) + (recentf-max-menu-items 50)) (use-package bookmark :defer t @@ -521,13 +520,18 @@ The misspelled word is taken from OVERLAY. WORD is the corrected word." ;; ([remap imenu] . consult-imenu) ;; ([remap info] . consult-info) ([remap repeat-complex-command] . consult-complex-command) - ([remap bookmark-jump] . consult-bookmark)) + ([remap bookmark-jump] . consult-bookmark) + ("C-x C-r" . consult-recent-file)) ;; :custom ;; Use consult for completion at point ;; (completion-in-region-function 'consult-completion-in-region) ) - +(use-package consult-recoll + :bind ("<menu>" . consult-recoll) + :custom + (consult-recoll-inline-snippets nil) + (consult-recoll-group-by-mime nil)) ;; Some settings for nicer completion with the default emacs completion buffer. I don't use this, because i use vertico. ;; (setopt completion-auto-help 'lazy |