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 ;;; ---------------------