diff --git a/custom.el b/custom.el index bcee697..45247cf 100644 --- a/custom.el +++ b/custom.el @@ -12,7 +12,7 @@ '(ecb-options-version "2.50") '(package-selected-packages (quote - (emmet-mode ecb undo-tree pip-requirements jedi highlight-indent-guides yaml-mode whitespace-cleanup-mode sublime-themes sml-modeline smarty-mode smart-mode-line-powerline-theme scss-mode sass-mode rainbow-mode prettier-js pkgbuild-mode pcre2el nlinum markdown-mode less-css-mode flycheck editorconfig anzu ac-php)))) + (neotree emmet-mode ecb undo-tree pip-requirements jedi highlight-indent-guides yaml-mode whitespace-cleanup-mode sublime-themes sml-modeline smarty-mode smart-mode-line-powerline-theme scss-mode sass-mode rainbow-mode prettier-js pkgbuild-mode pcre2el nlinum markdown-mode less-css-mode flycheck editorconfig anzu ac-php)))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. diff --git a/init.el b/init.el index a056e92..07c1795 100644 --- a/init.el +++ b/init.el @@ -37,6 +37,7 @@ (require 'init-ecb) (require 'init-modeline) (require 'init-indent-guides) +(require 'init-neotree) ;; Tools (require 'init-flycheck) (require 'init-whitespace) diff --git a/lisp/init-neotree.el b/lisp/init-neotree.el new file mode 100644 index 0000000..c3ab345 --- /dev/null +++ b/lisp/init-neotree.el @@ -0,0 +1,17 @@ +;;----------------------------------- +;; Neotree - NerdTree for Vim +;;----------------------------------- +(require-package 'neotree) +(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)