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