aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/init-neotree.el
blob: b3be5f5eab1f1d0a4265f295c7cbc93aa5ded6c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
;;-----------------------------------
;; Neotree - NerdTree for Vim
;;-----------------------------------
(use-package neotree
  :config
  (global-set-key [f8] 'neotree-toggle)
  ;;-----------------------
  ;; neo-smart-open
  ;;-----------------------
  ;;(setq neo-smart-open t)
  ;;---------------------------------------------------------
  ;; Custom icons - Require of all-the-icons
  ;;---------------------------------------------------------
  (setq neo-theme (if (display-graphic-p) 'icons 'arrow)))

(provide 'init-neotree)