commit 936793343fcbdc2605d45aed4e64c5a0cf95c832
parent a3ab9c0c839dd4f4897c6ba0c414600891b47ad2
Author: Cem Keylan <cem@ckyln.com>
Date: Sun, 5 Jul 2020 22:49:46 +0300
helm: move to Packages section
Diffstat:
1 file changed, 13 insertions(+), 11 deletions(-)
diff --git a/init.org b/init.org
@@ -34,6 +34,7 @@ on this file itself.
- [[#projectile][Projectile]]
- [[#emacs-dashboard][emacs-dashboard]]
- [[#elfeed][elfeed]]
+ - [[#helm][helm]]
- [[#extras][Extras]]
- [[#filetype-configurations][Filetype Configurations]]
- [[#themes-and-buffer-customization][Themes and Buffer Customization]]
@@ -527,6 +528,18 @@ agenda file with elfeed-org
'(:key "gR" :description "Refresh feeds")
'(:key "s" :description "Sort feed"))
#+END_SRC
+** helm
+#+BEGIN_SRC emacs-lisp
+ (use-package helm
+ :straight t
+ :commands (helm-find-files helm-buffers-list)
+ :config
+ (bind-key "C-x C-f" 'helm-find-files)
+ (bind-key "C-c m" 'helm-man-woman)
+ (bind-key "C-x b" 'helm-buffers-list))
+ (use-package helm-descbinds :straight t)
+ (use-package helm-swoop :straight t)
+#+END_SRC
** Extras
These don't really deserve their own sections, but I prefer to use them.
@@ -740,17 +753,6 @@ guess. Pretty straightforward.
:config
(setq awesome-tab-height 100))
#+END_SRC
-*** helm
-#+BEGIN_SRC emacs-lisp
- (use-package helm
- :straight t
- :commands (helm-find-files helm-buffers-list)
- :config
- (bind-key "C-x C-f" 'helm-find-files)
- (bind-key "C-x b" 'helm-buffers-list))
- (use-package helm-descbinds :straight t)
- (use-package helm-swoop :straight t)
-#+END_SRC
*** undo-tree
#+BEGIN_SRC emacs-lisp
(use-package undo-tree