From 12fcda46a343f38adba8f107a5f8942724b8b9e9 Mon Sep 17 00:00:00 2001 From: David Florness Date: Wed, 3 Jun 2020 01:45:41 -0600 Subject: [PATCH] treemacs --- init.el | 1 + lisp/treemacs.el | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 lisp/treemacs.el diff --git a/init.el b/init.el index 4dfa852..a25067c 100644 --- a/init.el +++ b/init.el @@ -27,6 +27,7 @@ (load "~/.emacs.d/lisp/scala") (load "~/.emacs.d/lisp/docker") (load "~/.emacs.d/lisp/rust") +(load "~/.emacs.d/lisp/treemacs") ;;; Winner mode: allows for undoing and redoing of windoow configurations ;;; C-c : undo diff --git a/lisp/treemacs.el b/lisp/treemacs.el new file mode 100644 index 0000000..7495326 --- /dev/null +++ b/lisp/treemacs.el @@ -0,0 +1,8 @@ +(use-package treemacs + :bind ("M-0" . treemacs)) + +(use-package treemacs-evil + :after treemacs) + +(use-package treemacs-projectile + :after (treemacs projectile)) -- 2.38.4