]> git.quilime.com - cfg.git/commitdiff
Adding .emacs
authorGabriel Dunne <gdunne@quilime.com>
Wed, 9 Dec 2020 01:58:27 +0000 (17:58 -0800)
committerGabriel Dunne <gdunne@quilime.com>
Wed, 9 Dec 2020 01:58:27 +0000 (17:58 -0800)
.emacs [new file with mode: 0644]

diff --git a/.emacs b/.emacs
new file mode 100644 (file)
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)