From e5a9606fb3afea3efa27cb8cfad097537f574c2a Mon Sep 17 00:00:00 2001 From: Gabriel Dunne Date: Thu, 10 Dec 2020 16:47:24 -0800 Subject: [PATCH] Updating emacs --- .emacs | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.emacs b/.emacs index 238cf10..7530c41 100644 --- 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"))))) -- 2.34.1