Philosophical stuff about this dotfiles structure, decisions, etc..
I was a little tired of having long alias files and everything strewn about (which is extremely common on other dotfiles projects, too). That led to this project being much more topic-centric. I realized I could split a lot of things up into the main areas I used (Ruby, git, system libraries, and so on), so I structured the project accordingly.
You can also read my post on the subject.
At first, this repo contained the homebrew installation and other stuff like that. I realized it would be better to split that into another repo, so this one would contain only the configs, and the other handles only software installation.
If you want to see what I install on my mac, check this repo.
VEDITOR
stands for "visual editor", and is set to code
be default. EDITOR
is set to vim
.
PROJECTS
is default to ~/Code
. The shortcut to that folder in the shell
is c
.
You can change that by adding your custom overrides in ~/.localrc
.
Everything's built around topic areas. If you're adding a new area to your
forked dotfiles — say, "Erlang" — you can simply add a erlang
directory and
put files in there. Anything with an extension of .zsh
will get automatically
included into your shell. Anything with an extension of .symlink
will get
symlinked without extension into $HOME
when you run script/bootstrap
.
There are a few special files in the hierarchy:
- bin/: Anything in
bin/
will get added to your$PATH
and be made available everywhere. - topic/*.zsh: Any files ending in
.zsh
get loaded into your environment. - topic/path.zsh: Any file named
path.zsh
is loaded first and is expected to setup$PATH
or similar. - topic/completion.zsh: Any file named
completion.zsh
is loaded last and is expected to setup autocomplete. - topic/*.symlink: Any files ending in
*.symlink
get symlinked into your$HOME
. This is so you can keep all of those versioned in your dotfiles but still keep those autoloaded files in your home directory. These get symlinked in when you runscript/bootstrap
. - topic/install.sh: Any file with this name and with exec permission, will
ran at
bootstrap
anddot_update
phase, and are expected to install plugins, and stuff like that.
This project uses the pure prompt (which is awesome!) and some other zsh plugins. All of them managed by Antibody, a faster and simpler Antigen-like program written in Go.
I try to keep it working in both Linux (no specific distro) and OS X, mostly because I use OS X at home and Linux at work.
The CI also is also ran on Linux and OSX.