Hide the mode line in neotree

This commit is contained in:
Jeremy Dormitzer 2020-01-03 09:48:05 -05:00
parent 3c3bc96c20
commit b1a1d7012e

View File

@ -960,6 +960,12 @@ I don't want which-key display "lambda" for the descriptions of these, so set a
(push '((nil . "select-window-[1-9]") . t) which-key-replacement-alist)
#+END_SRC
* Hide mode line
Does what it says on the box. I use it to hide the mode line in Neotree buffers.
#+BEGIN_SRC emacs-lisp
(use-package hide-mode-line)
#+END_SRC
* NeoTree
A package to browse files in a tree view
#+BEGIN_SRC emacs-lisp
@ -991,7 +997,8 @@ A package to browse files in a tree view
neo-toggle-window-keep-p t
neo-theme (if (display-graphic-p) 'icons 'arrow)
neo-autorefresh t
projectile-switch-project-action 'neotree-project-action))
projectile-switch-project-action 'neotree-project-action)
(add-hook 'neotree-mode-hook 'hide-mode-line-mode))
(use-package all-the-icons
:after (neotree))