]> git.quilime.com - cfg.git/commitdiff
Updating emacs
authorGabriel Dunne <gdunne@quilime.com>
Fri, 11 Dec 2020 00:47:24 +0000 (16:47 -0800)
committerGabriel Dunne <gdunne@quilime.com>
Fri, 11 Dec 2020 00:47:24 +0000 (16:47 -0800)
.emacs

diff --git a/.emacs b/.emacs
index 238cf105ea8dbcbb88211a0be5dddcbb1911f790..7530c41f221167c55f00e1cf82e83a023962de2f 100644 (file)
--- a/.emacs
+++ b/.emacs
@@ -1,19 +1,18 @@
-;; backup in one place. flat, no file structure
-
-;; Added by Package.el.  This must come before configurations of
-;; installed packages.  Don't delete this line.  If you don't want it,
-;; just comment it out by adding a semicolon to the start of the line.
-;; You may delete these explanatory comments.
 (package-initialize)
-
 (require 'package)
 (add-to-list 'package-archives
          '("melpa" . "https://melpa.org/packages/"))
 
+;; backup in one place. flat, no file structure
 (setq backup-directory-alist '(("" . "~/.emacs.d/backup")))
 
+
 ;; neotree
 ;; https://github.com/jaypei/emacs-neotree
 (add-to-list 'load-path "~/.emacs.d/plugins/neotree")
 (require 'neotree)
 (global-set-key [f8] 'neotree-toggle)
+(custom-set-faces
+ '(neo-root-dir-face ((t (:foreground "#8D8D84"))))
+ '(neo-dir-link-face ((t (:foreground "#00ffff"))))
+ '(neo-file-link-face ((t (:foreground "#dddddd")))))