From 14c0bf93dbbe36f56553f62d0d30e30633f3cef2 Mon Sep 17 00:00:00 2001 From: Gabriel Dunne Date: Tue, 8 Dec 2020 17:58:27 -0800 Subject: [PATCH] Adding .emacs --- .emacs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .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) -- 2.34.1