Move keybinds to +emacs-bindings

This commit is contained in:
George Xanthakis 2020-10-29 23:35:21 +02:00
parent 7eaf402c0b
commit 250b7d1d8b

View file

@ -568,3 +568,13 @@
(:when (featurep! :ui treemacs) (:when (featurep! :ui treemacs)
"<f9>" #'+treemacs/toggle "<f9>" #'+treemacs/toggle
"<C-f9>" #'treemacs-find-file)) "<C-f9>" #'treemacs-find-file))
(map! :leader
(:when (featurep! :editor fold)
(:prefix ("C-f" . "fold")
"C-d" #'vimish-fold-delete
"C-a C-d" #'vimish-fold-delete-all
"C-f" #'+fold/toggle
"C-a C-f" #'+fold/close-all
"C-u" #'+fold/open
"C-a C-u" #'+fold/open-all)))