forked from vjohansen/emacs-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
executable file
·46 lines (33 loc) · 1.44 KB
/
README
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Vagns emacs lisp config files.
Well, not really this is a stripped down version for public
consumption. MORE WILL COME LATER.
Quick Start
mkdir ~/site-lisp
cd ~/site-lisp
git clone git://github.com/vjohansen/emacs-config.git
cp ~/site-lisp/emacs-config/sample-dot-emacs.el ~/.emacs
mkdir ~/elisp
emacs
C-x r j e (loads the machine specific elisp file from ~/elisp AKA my-lisp-dir)
If necessary setup exec-path and PATH first in .emacs:
;; Windows example (MSYS-Git has grep.exe and other useful tools)
(add-to-list 'exec-path "c:/tools/Git/bin" t)
(setenv "PATH" (concat (getenv "PATH") ";c:\\tools\\Git\\bin"))
Create a .emacs with (or just copy this from sample-dot-emacs.el)
(add-to-list 'load-path "~/path/to/emacs-config/")
;; optionally change my-lisp-dir via defvar (default is "~/elisp")
(load "vj-init")
The following registers have set up for quickly opening config files. Use
C-x r j <letter>:
| Letter | File |
|--------+-------------------------------------|
| e | vj-machine-specific-elisp-file |
| s | vj-system-type-specific-elisp-file |
| E | "~/.emacs" or "~/ .emacs.d/init.el" |
| c | custom-file |
The custom file will have a machine specific name.
License: GPL
(unless otherwise specified)
The site-lisp directory contain compies of elisp files from
https://github.com/m2ym/auto-complete.git
git://github.com/m2ym/popup-el.git