https://github.com/xwmx/dotfiles
A user environment for Unix-like systems.
https://github.com/xwmx/dotfiles
Last synced: 3 months ago
JSON representation
A user environment for Unix-like systems.
- Host: GitHub
- URL: https://github.com/xwmx/dotfiles
- Owner: xwmx
- License: mit
- Created: 2014-11-22T07:42:52.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2018-10-28T21:53:28.000Z (almost 7 years ago)
- Last Synced: 2025-05-08T18:50:53.226Z (5 months ago)
- Language: Shell
- Homepage:
- Size: 2.73 MB
- Stars: 25
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
.:: .:: .:: .::
.:: .:: .: .: .::
.:: .:: .:.: .:.:.: .: .:: .:: .::::
.:: .:: .:: .:: .:: .:: .:: .:: .: .:: .::
.: .::.:: .:: .:: .:: .:: .::.::::: .:: .:::
.: .:: .:: .:: .:: .:: .:: .::.: .::
.:: .:: .:: .:: .:: .::.::: .:::: .:: .::
# dotfiles
🅓🅞🅣🅕🅘🅛🅔🅢
An OS X and Linux environment with configuration scripts. Uses the [`bindle`
configuration management tool](https://github.com/alphabetum/bindle).## Setup
### OS X
Assuming you have [Homebrew](http://brew.sh/) installed, copy the
following and paste it into your terminal:```bash
brew install alphabetum/taps/bindle && \
bindle init https://github.com/alphabetum/dotfiles.git "$HOME/.dotfiles" && \
bindle bootstrap osx
```This will take some time to run (it has to pull the submodules) and should
1. install the `bindle` tool,
2. clone the repository to your home directory,
3. add a `~/bin` directory if one is not already present,
4. and add a `~/.bindlerc` configuration file.Use the [`bindle`](https://github.com/alphabetum/bindle) tool to experiment
with linking files into your environment. `bindle` commands can be discovered
by running `bindle help`.### Linux
_Warning: The current Linux bootstrapping overwrites existing configuration
files, installs various packages in `$HOME`, and changes the shell to zsh._Run the following, preferably at the root level of you home directory.
```bash
git clone --recurse-submodules -j8 https://github.com/alphabetum/dotfiles.git "$HOME/.bindle" && \
"$HOME/.bindle/script/bootstrap/linux"
```## Components
### bin
All of the tracked scripts and binaries, and everything at the first level of
this directory should be symlinked into `$HOME/bin`.### config
Configuration files for applications.
### home
All of the tracked dotfiles, and everything at the first level of this
directory should be symlinked into `$HOME`.Most settings work with both bash and zsh, though zsh is assumed to be
the default.The vim configuration assumes the use of macvim and janus. Plugins are
included in the `./home/.janus` directory as submodules. oh-my-zsh is
used for zsh configuration, and and uses .oh-my-zsh.custom for the
custom directory.### local
A directory that isn't tracked by git. Can be used for anything non-public.
### script
Scripts for configuring or updating environments.
### vendor
Files and resources that are actively being linked or used by scripts.
## Local Configuration
The following files are expected and should be added to `$HOME` with any
local settings.- `.gitconfig.local`
- `.hgrc.local`Other `.local` files can also be used to modify other tracked files. All
of the available `.local` files can be created by copying the
corresponding `.local.example` files into `$HOME` with the `.example`
extension removed.## More Resources
- [alphabetum/bindle](https://github.com/alphabetum/bindle)
- [alphabetum/dotfile-research](https://github.com/alphabetum/dotfile-research)