equal
deleted
inserted
replaced
1 -*- mode: outline; coding: utf-8 -*- |
|
2 |
|
3 Copyright (C) 2010 by Oleksandr Gavenko <gavenkoa@gmail.com> |
|
4 |
|
5 You can do anything with this file without any warranty. |
|
6 |
|
7 * Config files structure. |
|
8 |
|
9 Main Emacs config file is '~/.emacs'. I decide don't store beside it all |
|
10 customisations. Instead it simply load files in such order: |
|
11 |
|
12 '~/.emacs-autogen' |
|
13 It content depend on installation environment. Automatically |
|
14 generated. |
|
15 '~/.emacs-pre' |
|
16 For manually written customisation (usually for updating |
|
17 load-path) which can affect on '.emacs-my'. Will not be |
|
18 overridden on install. |
|
19 '~/.emacs.d/my-lisp/autoload-my.el' |
|
20 For defining autoload function for modes (instead loading all |
|
21 mode files to save startup time). Automatically generated. |
|
22 '~/.emacs-custom.el' |
|
23 For storing customisations by Emacs itself. Some settings from |
|
24 this file can effect on loaded elisp files from .emacs-my. |
|
25 Will not be overridden on install. |
|
26 '~/.emacs-my' |
|
27 Here main customisations placed. |
|
28 '~/.emacs-post' |
|
29 For storing connection settings, passwords and enabling modes |
|
30 added to load-path in ~/.emacs-pre. Will not be overridden on |
|
31 install. |
|