From 52c599788a25f06854ae626f9c995377a80f6d0e Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 15 Sep 2016 23:59:44 +0200 Subject: [PATCH] Remove neotree customizations (in doom-themes now) --- core/defuns/defuns-neotree.el | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/core/defuns/defuns-neotree.el b/core/defuns/defuns-neotree.el index 5f26a459b..c25408048 100644 --- a/core/defuns/defuns-neotree.el +++ b/core/defuns/defuns-neotree.el @@ -44,28 +44,5 @@ (cl-letf (((symbol-function 'yes-or-no-p) (lambda (&rest _) t))) (apply orig-fun args))) -;;;###autoload -(defun doom*neo-insert-root-entry (node) - "Pretty-print pwd in neotree" - (list (concat "  " (projectile-project-name)))) - -;;;###autoload -(defun doom*neo-insert-fold-symbol (name) - "Custom hybrid unicode theme with leading whitespace." - (or (and (eq name 'open) - (neo-buffer--insert-with-face (format " - %s " - (propertize "" - 'face `(:family "fontawesome" :height 1.2) - 'display '(raise -0.2))) - 'neo-expand-btn-face)) - (and (eq name 'close) - (neo-buffer--insert-with-face (format " + %s " - (propertize "" - 'face `(:family "fontawesome" :height 1.2) - 'display '(raise -0.2))) - 'neo-expand-btn-face)) - (and (eq name 'leaf) - (neo-buffer--insert-with-face " " 'neo-expand-btn-face)))) - (provide 'defuns-neotree) ;;; defuns-neotree.el ends here