diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..4ca4b51 --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +# Rahm's Zsh Files. + +This is my hand-rolled ZSH configuration system. + +It's pretty simple how it works. Each of the `*.zsh` files in this directory are +sourced in alphabetical order by the `zshrc` file. + +Local configurations are stored in the `local/ directory`. The same rules apply; +however, these files are covered by the `.gitignore` and thus are designed to be +local-only configuration that is not committed to git. + +Prompts are selected based no the hostname and are stored in the `prompts/` +folder. Specifically, `prompts/$(hostname).zsh` is sourced. + +## Installation + +```sh +git clone git://git.josher.dev/zshrcd.git ~/.zshrc.d && \ + ln -s ~/.zshrc.d/zshrc ~/.zshrc +``` |