Added neotree - Manage directory

This commit is contained in:
Jesús 2018-10-03 15:33:23 -05:00
parent 64efd16ffe
commit 7ae797d197
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766
3 changed files with 19 additions and 1 deletions

View File

@ -12,7 +12,7 @@
'(ecb-options-version "2.50") '(ecb-options-version "2.50")
'(package-selected-packages '(package-selected-packages
(quote (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
;; custom-set-faces was added by Custom. ;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful. ;; If you edit it by hand, you could mess it up, so be careful.

View File

@ -37,6 +37,7 @@
(require 'init-ecb) (require 'init-ecb)
(require 'init-modeline) (require 'init-modeline)
(require 'init-indent-guides) (require 'init-indent-guides)
(require 'init-neotree)
;; Tools ;; Tools
(require 'init-flycheck) (require 'init-flycheck)
(require 'init-whitespace) (require 'init-whitespace)

17
lisp/init-neotree.el Normal file
View File

@ -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)