summary refs log tree commit diff stats
path: root/init.el
blob: 7f6da308fe47f313d1c2856cc7ed0c387a3aabfc (plain)
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
26
27
:;;; init.el -*- lexical-binding: t; coding: utf-8-unix -*-
;;
;; Author: Case Duckworth <acdw@acdw.net>
;; Created: Sometime during Covid-19, 2020
;; Keywords: configuration
;; URL: https://tildegit.org/acdw/emacs
;; Bankruptcy: 5b
;;
;; This file is NOT part of GNU Emacs.
;;
;;; License:
;;
;; Everyone is permitted to do whatever with this software, without
;; limitation.  This software comes without any warranty whatsoever,
;; but with two pieces of advice:
;; - Don't hurt yourself.
;; - Make good choices.
;;
;;; Code:

;; Add `acdw.el'
(add-to-list 'load-path (expand-file-name "lisp/"
					  user-emacs-directory))
(require 'acdw)

(autoload 'ehelp-command "ehelp")
(define-key acdw/map (kbd "C-h") #'ehelp-command)