[helm] avoid duplicates in `helm-M-x' history

This commit is contained in:
Ivan Yonchovski 2021-02-20 22:53:54 +02:00 committed by Maximilian Wolff
parent 1d0cd56c17
commit 599a9bb278
1 changed files with 3 additions and 1 deletions

View File

@ -156,7 +156,9 @@
;; to overwrite any key binding
(unless (configuration-layer/layer-usedp 'smex)
(spacemacs/set-leader-keys
dotspacemacs-emacs-command-key 'spacemacs/helm-M-x-fuzzy-matching)))))
dotspacemacs-emacs-command-key 'spacemacs/helm-M-x-fuzzy-matching))))
;; avoid duplicates in `helm-M-x' history.
(setq history-delete-duplicates t))
:config
(progn
(helm-mode)