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
|
2018-05-25 00:56:15 +02:00
|
|
|
"^\\.\\(?:git\\|hg\\|svn\\)$"
|
2017-06-05 00:32:35 +02:00
|
|
|
;; compiled files
|
2018-05-25 00:56:15 +02:00
|
|
|
"\\.\\(?:pyc\\|o\\|elc\\|lock\\|css.map\\|class\\)$"
|
2017-06-05 00:32:35 +02:00
|
|
|
;; generated files, caches or local pkgs
|
2018-05-25 00:56:15 +02:00
|
|
|
"^\\(?:node_modules\\|vendor\\|.\\(project\\|cask\\|yardoc\\|sass-cache\\)\\)$"
|
2017-06-05 00:32:35 +02:00
|
|
|
;; org-mode folders
|
2018-05-25 00:56:15 +02:00
|
|
|
"^\\.\\(?:sync\\|export\\|attach\\)$"
|
|
|
|
;; temp files
|
2017-06-05 00:32:35 +02:00
|
|
|
"~$"
|
|
|
|
"^#.*#$"))
|
|
|
|
|
2018-06-15 02:58:12 +02:00
|
|
|
(set-popup-rule! "^ ?\\*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
|
|
|
|
2018-05-18 01:21:09 +02:00
|
|
|
(after! winner
|
|
|
|
(cl-pushnew neo-buffer-name winner-boring-buffers))
|
2018-02-17 18:51:14 -05:00
|
|
|
|
|
|
|
;; 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))
|