Hide the mode line in neotree
This commit is contained in:
parent
3c3bc96c20
commit
b1a1d7012e
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user