From eb0d9bfa988c0092a0437e312e64a2f983f4aefc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pankowski?= Date: Tue, 3 Oct 2017 22:50:31 +0200 Subject: [PATCH] add comment on use-package and C-ct key for treemacs --- init.el | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/init.el b/init.el index cd023e7..4294700 100644 --- a/init.el +++ b/init.el @@ -64,6 +64,9 @@ ;;; to install all marked packages (the necessary dependencies will be ;;; installed automatically). +;;; Note: The last line above requires installing package named +;;; `use-package` to work. + ;;; Buffer, file, and window selection enhancements ;;; ---------------------------------------------- @@ -131,6 +134,11 @@ :bind ("C-:" . avy-goto-char-timer)) +(use-package treemacs + :ensure nil + :bind + ("C-c t" . treemacs-toggle)) + ;;; Editing enhancements ;;; ---------------------