-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.el
26 lines (20 loc) · 948 Bytes
/
init.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
;;; Stolen shamelessly from http://hg.gomaa.us/dotfiles.
;;; His whole damn way of organizing dotfiles is pretty cool.
;;;
;;; Also: massive inspiration from https://github.com/purcell/emacs.d
;; 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)
(eval-and-compile
(customize-set-variable
'package-archives '(("org" . "https://orgmode.org/elpa/")
("melpa" . "https://melpa.org/packages/")
("gnu" . "https://elpa.gnu.org/packages/"))))
(add-to-list 'load-path (expand-file-name "lisp" user-emacs-directory))
; single entry point:
(require 'x-hugh-init)
(put 'upcase-region 'disabled nil)
(put 'downcase-region 'disabled nil)
(put 'dired-find-alternate-file 'disabled nil)