diff options
author | Jesús <heckyel@hyperbola.info> | 2018-10-26 23:27:56 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2018-10-26 23:27:56 -0500 |
commit | aaa86c4187942abc0869a133e917dbf32b95bb6b (patch) | |
tree | 81b70622b1133001482b99323b24797f15a6126c /lisp/init-neotree.el | |
parent | 4a3d8a46f926bc810238ec32d7141b3c965abbd9 (diff) | |
download | emacs-personal-aaa86c4187942abc0869a133e917dbf32b95bb6b.tar.lz emacs-personal-aaa86c4187942abc0869a133e917dbf32b95bb6b.tar.xz emacs-personal-aaa86c4187942abc0869a133e917dbf32b95bb6b.zip |
single syntax with «use-package»
Diffstat (limited to 'lisp/init-neotree.el')
-rw-r--r-- | lisp/init-neotree.el | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/lisp/init-neotree.el b/lisp/init-neotree.el index ac173a8..b3be5f5 100644 --- a/lisp/init-neotree.el +++ b/lisp/init-neotree.el @@ -1,17 +1,16 @@ ;;----------------------------------- ;; Neotree - NerdTree for Vim ;;----------------------------------- -(use-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)) +(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) |