From: Gabriel Dunne Date: Wed, 9 Dec 2020 01:58:27 +0000 (-0800) Subject: Adding .emacs X-Git-Url: https://git.quilime.com/?a=commitdiff_plain;h=14c0bf93dbbe36f56553f62d0d30e30633f3cef2;p=cfg.git Adding .emacs --- diff --git a/.emacs b/.emacs new file mode 100644 index 0000000..238cf10 --- /dev/null +++ b/.emacs @@ -0,0 +1,19 @@ +;; 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/")) + +(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)