diff --git a/emacs/init.org b/emacs/init.org index c982e07..69c1d3e 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -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))