From: Gabriel Dunne Date: Fri, 11 Dec 2020 00:47:24 +0000 (-0800) Subject: Updating emacs X-Git-Url: https://git.quilime.com/?a=commitdiff_plain;h=e5a9606fb3afea3efa27cb8cfad097537f574c2a;p=cfg.git Updating emacs --- 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")))))