aboutsummaryrefslogtreecommitdiff
path: root/emacs/emacs.el
diff options
context:
space:
mode:
authoralex <alex@pdp7.net>2025-03-29 12:34:41 +0100
committeralexpdp7 <alex@corcoles.net>2025-03-29 13:09:32 +0100
commit90e79fccf82f3657dc23e3d196495d4f18c85b84 (patch)
tree003fecdd7d766ce71843510dd753f69315760a87 /emacs/emacs.el
parent1e3e090e0809c30e2ee1f6ed9bc1e8eb12536d19 (diff)
Replace helm with fido-vertical built in to Emacs 30
Diffstat (limited to 'emacs/emacs.el')
-rw-r--r--emacs/emacs.el9
1 files changed, 1 insertions, 8 deletions
diff --git a/emacs/emacs.el b/emacs/emacs.el
index 94a10763..2bc0c76b 100644
--- a/emacs/emacs.el
+++ b/emacs/emacs.el
@@ -53,14 +53,7 @@
;; https://www.reddit.com/r/emacs/comments/tejte0/undotree_bug_undotree_files_scattering_everywhere/?rdt=39892
(setq undo-tree-history-directory-alist '(("." . "~/.emacs.d/undo"))))
-;; nicer completion UI
-(use-package helm
- :ensure t
- :config
- (global-set-key (kbd "M-x") #'helm-M-x)
- (global-set-key (kbd "C-x C-f") #'helm-find-files)
- (global-set-key (kbd "C-x C-b") #'helm-mini)
- (setq helm-ff-skip-boring-files t))
+(fido-vertical-mode)
;; learn keyboard shortcuts
(which-key-mode)