From f40c6b810539de88458a6a029bbab40577966789 Mon Sep 17 00:00:00 2001 From: jgrogan Date: Fri, 31 May 2024 10:46:51 +0100 Subject: [PATCH] Add treemacs evil plugin. --- README.md | 3 +-- emacs/.emacs.d/custom.el | 2 +- emacs/.emacs.d/init.el | 5 ++++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e431023..a9a92c8 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,2 @@ # dotfiles - -Collection of dotfiles for development environment setup \ No newline at end of file +Collection of dotfiles for development environment setup diff --git a/emacs/.emacs.d/custom.el b/emacs/.emacs.d/custom.el index 4ffacd1..96b9f22 100644 --- a/emacs/.emacs.d/custom.el +++ b/emacs/.emacs.d/custom.el @@ -4,7 +4,7 @@ ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(package-selected-packages - '(visual-fill-column org-bullets treemacs-icons-dired treemacs-projectile treemacs-all-the-icons treemacs emms evil-collection evil magit counsel-projectile projectile markdown-mode which-key rainbow-delimiters doom-modeline doom-themes all-the-icons ivy))) + '(treemacs-evil visual-fill-column org-bullets treemacs-icons-dired treemacs-projectile treemacs-all-the-icons treemacs emms evil-collection evil magit counsel-projectile projectile markdown-mode which-key rainbow-delimiters doom-modeline doom-themes all-the-icons ivy))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el index b2c1415..3429412 100644 --- a/emacs/.emacs.d/init.el +++ b/emacs/.emacs.d/init.el @@ -47,7 +47,7 @@ :config (load-theme 'doom-dracula t) (setq doom-themes-treemacs-theme "doom-atom") - ;;(doom-themes-treemacs-config) + (doom-themes-treemacs-config) (doom-themes-org-config) ) @@ -235,6 +235,9 @@ (use-package treemacs-projectile :after (treemacs projectile)) +(use-package treemacs-evil + :after (treemacs evil)) + (use-package treemacs-icons-dired :hook (dired-mode . treemacs-icons-dired-enable-once) :after (treemacs))