2018-05-11 20:16:36 +02:00
|
|
|
;;; ui/neotree/config.el -*- lexical-binding: t; -*-
|
2017-06-05 00:32:35 +02:00
|
|
|
|
|
|
|
(def-package! neotree
|
|
|
|
:commands (neotree-show
|
|
|
|
neotree-hide
|
|
|
|
neotree-toggle
|
|
|
|
neotree-dir
|
|
|
|
neotree-find
|
|
|
|
neo-global--with-buffer
|
|
|
|
neo-global--window-exists-p)
|
|
|
|
:config
|
|
|
|
(setq neo-create-file-auto-open nil
|
|
|
|
neo-auto-indent-point nil
|
|
|
|
neo-autorefresh nil
|
|
|
|
neo-mode-line-type 'none
|
2018-02-17 18:50:59 -05:00
|
|
|
neo-window-width 28
|
2017-06-05 00:32:35 +02:00
|
|
|
neo-show-updir-line nil
|
|
|
|
neo-theme 'nerd ; fallback
|
|
|
|
neo-banner-message nil
|
|
|
|
neo-confirm-create-file #'off-p
|
|
|
|
neo-confirm-create-directory #'off-p
|
|
|
|
neo-show-hidden-files nil
|
|
|
|
neo-keymap-style 'concise
|
2018-05-11 20:16:36 +02:00
|
|
|
neo-show-hidden-files t
|
2017-06-05 00:32:35 +02:00
|
|
|
neo-hidden-regexp-list
|
|
|
|
'(;; vcs folders
|
|
|
|
"^\\.\\(git\\|hg\\|svn\\)$"
|
|
|
|
;; compiled files
|
2018-05-12 22:44:41 +02:00
|
|
|
"\\.\\(pyc\\|o\\|elc\\|lock\\|css.map\\|class\\)$"
|
2017-06-05 00:32:35 +02:00
|
|
|
;; generated files, caches or local pkgs
|
|
|
|
"^\\(node_modules\\|vendor\\|.\\(project\\|cask\\|yardoc\\|sass-cache\\)\\)$"
|
|
|
|
;; org-mode folders
|
|
|
|
"^\\.\\(sync\\|export\\|attach\\)$"
|
|
|
|
"~$"
|
|
|
|
"^#.*#$"))
|
|
|
|
|
2018-01-06 01:23:22 -05:00
|
|
|
(set! :popup "^ ?\\*NeoTree"
|
2018-01-13 15:10:38 -05:00
|
|
|
`((side . ,neo-window-position) (size . ,neo-window-width))
|
2018-01-06 02:42:53 -05:00
|
|
|
'((quit . current) (select . t)))
|
2018-01-06 01:23:22 -05:00
|
|
|
|
2017-06-05 00:32:35 +02:00
|
|
|
(when (bound-and-true-p winner-mode)
|
2018-02-17 18:51:14 -05:00
|
|
|
(push neo-buffer-name winner-boring-buffers))
|
|
|
|
|
|
|
|
;; The cursor always sits at bol. `+neotree*fix-cursor' and
|
|
|
|
;; `+neotree*indent-cursor' change that behavior, so that the cursor is always
|
|
|
|
;; on the first non-blank character on the line, in the neo buffer.
|
|
|
|
(defun +neotree*fix-cursor (&rest _)
|
|
|
|
(with-current-buffer neo-global--buffer
|
|
|
|
(+neotree*indent-cursor)))
|
|
|
|
(add-hook 'neo-enter-hook #'+neotree*fix-cursor)
|
|
|
|
|
|
|
|
(defun +neotree*indent-cursor (&rest _)
|
|
|
|
(beginning-of-line)
|
|
|
|
(skip-chars-forward " \t\r"))
|
|
|
|
(advice-add #'neotree-next-line :after #'+neotree*indent-cursor)
|
|
|
|
(advice-add #'neotree-previous-line :after #'+neotree*indent-cursor))
|