aboutsummaryrefslogtreecommitdiffstats
path: root/README.rst
blob: 0f6d17ae358515e8dc18840fc54da81a634da88b (plain) (blame)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
Dotfile management made easy
============================

``dotfiles`` is a tool to make managing your dotfile symlinks in ``$HOME``
easy, allowing you to keep all your dotfiles in a single directory.

Hosting is up to you. You can use a VCS like git, Dropbox, or even rsync to
distribute your dotfiles repository across multiple hosts.

The repository can be specified at runtime, so you can manage multiple
repositories without hassle. See the Configuration_ section below for further
details.

Directories are supported as well. Any file object in your home directory that
starts with a ``.`` is fair game.

Recent Changes
--------------

I've managed to find some free time recently and have been making some changes
and improvements that hopefully people will appreciate.  At the moment the
``master`` branch is in a state of flux until I get all of the pieces included.

Feel free to use the latest stable version ``0.6.4`` on pypi if that's what
you're looking for.

Over time several features and improvements were merged and I feel now is a
good time to step back and rethink the structure a bit.  I think I can support
the ``packages`` feature in a much more general way that doesn't require
configuration file changes and support the other features without having
combinations that break in subtle ways.

I've reworked the CLI to use click, which means a more git-like interface as
well as shell completion for bash and colored output.

Thanks for baring with me, I hope to have this new version in good shape and
released soon.  There are some changes in interface and behaviour from the
previous version and I hope it doesn't frustrate folks too much.  Feel free to
submit an issue if you find something intolerable.

Interface
---------

``-a, --add <file...>``
    Add dotfile(s) to the repository.

``-c, --check``
    Check for missing or unsynced dotfiles.

``-l, --list``
    List currently managed dotfiles, one per line.

``-r, --remove <file...>``
    Remove dotfile(s) from the repository.

``-s, --sync [file...]``
    Update dotfile symlinks. You can overwrite colliding files with ``-f`` or
    ``--force``.  All dotfiles are assumed if you do not specify any files to
    this command.

``-m, --move <path>``
    Move dotfiles repository to another location, updating all symlinks in the
    process.

For all commands you can use the ``--dry-run`` option, which will print actions
and won't modify anything on your drive.

Installation
------------

To install dotfiles, simply: ::

    $ pip install dotfiles

Or, if you absolutely must: ::

    $ easy_install dotfiles

But, you really shouldn't do that.

If you want to work with the latest version, you can install it from `the
repository`_::

    $ git clone https://github.com/jbernard/dotfiles
    $ cd dotfiles
    $ ./bin/dotfiles --help

Examples
--------

To install your dotfiles on a new machine, you might do this: ::

  $ git clone https://github.com/me/my-dotfiles Dotfiles
  $ dotfiles --sync

To add '~/.vimrc' to your repository: ::

  $ dotfiles --add ~/.vimrc     (relative paths work also)

To make it available to all your hosts: ::

  $ cd ~/Dotfiles
  $ git add vimrc
  $ git commit -m "Added vimrc, welcome aboard!"
  $ git push

You get the idea. Type ``dotfiles --help`` to see the available options.

Configuration
-------------

You can choose to create a configuration file to store personal customizations.
By default, ``dotfiles`` will look for ``~/.dotfilesrc``. You can change this
with the ``-C`` flag. An example configuration file might look like: ::

  [dotfiles]
  repository = ~/Dotfiles
  ignore = [
      '.git',
      '.gitignore',
      '*.swp']
  externals = {
      '.bzr.log':     '/dev/null',
      '.uml':         '/tmp'}

You can also store your configuration file inside your repository. Put your
settings in ``.dotfilesrc`` at the root of your repository and ``dotfiles`` will
find it. Note that ``ignore`` and ``externals`` are appended to any values
previously discovered.

Prefixes
--------

Dotfiles are stored in the repository with no prefix by default. So,
``~/.bashrc`` will link to ``~/Dotfiles/bashrc``. If your files already have a
prefix, ``.`` is common, but I've also seen ``_``, then you can specify this
in the configuration file and ``dotfiles`` will do the right thing. An example
configuration in ``~/.dotfilesrc`` might look like: ::

  [dotfiles]
  prefix = .

Externals
---------

You may want to link some dotfiles to external locations. For example, ``bzr``
writes debug information to ``~/.bzr.log`` and there is no easy way to disable
it. For that, I link ``~/.bzr.log`` to ``/dev/null``. Since ``/dev/null`` is
not within the repository, this is called an external. You can have as many of
these as you like. The list of externals is specified in the configuration
file: ::

  [dotfiles]
  externals = {
      '.bzr.log':     '/dev/null',
      '.adobe':       '/tmp',
      '.macromedia':  '/tmp'}

Ignores
-------

If you're using a VCS to manage your repository of dotfiles, you'll want to
tell ``dotfiles`` to ignore VCS-related files. For example, I use ``git``, so
I have the following in my ``~/.dotfilesrc``: ::

  [dotfiles]
  ignore = [
      '.git',
      '.gitignore',
      '*.swp']

Any file you list in ``ignore`` will be skipped. The ``ignore`` option supports
glob file patterns.

Packages
--------

Many programs store their configuration in ``~/.config``. It's quite cluttered
and you probably don't want to keep all its content in your repository. For this
situation you can use the ``packages`` setting::

    [dotfiles]
    packages = ['config']

This tells ``dotfiles`` that the contents of the ``config`` subdirectory of
your repository must be symlinked to ``~/.config``. If for example you have a
directory ``config/awesome`` in your repository, it will be symlinked to
``~/.config/awesome``.

This feature allows one additional level of nesting, but further subdirectories
are not eligible for being a package.  For example, ``config`` is valid, but
``config/transmission`` is not valid.  Arbitrary nesting is a feature under
current consideration.

At the moment, packages can not be added or removed through the command line
interface.  They must be constructed and configured manually.  Once this is
done, ``sync``, ``list``, ``check``, and ``move`` will do the right thing.
Support for ``add`` and ``remove`` is a current TODO item.

Contribute
----------

If you'd like to contribute, simply fork `the repository`_, commit your changes,
make sure tests pass, and send a pull request. Go ahead and add yourself to
AUTHORS_ or I'll do it when I merge your changes.

.. _`the repository`: https://github.com/jbernard/dotfiles
.. _AUTHORS: https://github.com/jbernard/dotfiles/blob/master/AUTHORS.rst