Toolbox - Dotfiles, Functions and ZSH Configurations, oh my!
This toolbox is where I store the configurations that keep my systems running the way I enjoy.
This repository is forked from Prezto, a ZSH framework, with scripts and the method of file organization from holman/dotfiles.
The instructions for how to run both parts of this repository are below.
Follow the Prezto steps first, and then run script/bootstrap
Prezto — Instantly Awesome Zsh
Prezto is the configuration framework for Zsh; it enriches the command line interface environment with sane defaults, aliases, functions, auto completion, and prompt themes.
Installation
Prezto will work with any recent release of Zsh, but the minimum required version is 4.3.17.
-
Launch Zsh:
zsh
-
Clone the repository:
git clone --recursive https://github.com/csturtevant/toolbox.git "${ZDOTDIR:-$HOME}/.zprezto"
-
Create a new Zsh configuration by copying the Zsh configuration files provided:
setopt EXTENDED_GLOB for rcfile in "${ZDOTDIR:-$HOME}"/.zprezto/runcoms/^README.md(.N); do ln -s "$rcfile" "${ZDOTDIR:-$HOME}/.${rcfile:t}" done
Note: If you already have any of the given config files, ln will error. In simple cases you can add
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
to the bottom of your.zshrc
to load prezto but keep your config intact. For more complicated setups, it is recommended that you back up your original configs and replace them with the provided prezto runcoms. -
Set Zsh as your default shell:
chsh -s /bin/zsh
-
Open a new Zsh terminal window or tab.
Troubleshooting
If you are not able to find certain commands after switching to Prezto,
modify the PATH
variable in ~/.zprofile then open a new Zsh terminal
window or tab.
Updating
Pull the latest changes and update submodules.
git pull && git submodule update --init --recursive
Usage
Prezto has many features disabled by default. Read the source code and accompanying README files to learn of what is available.
Modules
- Browse /modules to see what is available.
- Load the modules you need in ~/.zpreztorc then open a new Zsh terminal window or tab.
Themes
-
For a list of themes, type
prompt -l
. -
To preview a theme, type
prompt -p name
. -
Load the theme you like in ~/.zpreztorc then open a new Zsh terminal window or tab.
Customization
The project is managed via Git. It is highly recommended that you fork this project; so, that you can commit your changes and push them to GitHub to not lose them. If you do not know how to use Git, follow this tutorial and bookmark this reference.
Resources
The Zsh Reference Card and the zsh-lovers man page are indispensable.
csturtevant does dotfiles
Your dotfiles are how you personalize your system. These are mine.
topical
Everything's built around topic areas. If you're adding a new area to your
forked dotfiles — say, "Java" — you can simply add a java
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
.
components
There's a few special files in the hierarchy.
- bin/: Anything in
bin/
will get added to your$PATH
and be made available everywhere. - Brewfile: This is a list of applications for Homebrew Cask to install: things like Chrome and 1Password and Adium and stuff. Might want to edit this file before running any initial setup.
- 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/install.sh: Any file named
install.sh
is executed when you runscript/install
. To avoid being loaded automatically, its extension is.sh
, not.zsh
. - topic/*.symlink: Any file ending in
*.symlink
gets 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
.
install
Run this:
cd ~/.toolbox
script/bootstrap
This will symlink the appropriate files in .toolbox
to your home directory.
Everything is configured and tweaked within ~/.toolbox
.
The main file you'll want to change right off the bat is zsh/zshrc.symlink
,
which sets up a few paths that'll be different on your particular machine.
dot
is a simple script that installs some dependencies, sets sane macOS
defaults, and so on. Tweak this script, and occasionally run dot
from
time to time to keep your environment fresh and up-to-date. You can find
this script in bin/
.