Update README.md

This commit is contained in:
Alexander Rosenberg 2023-05-03 16:29:35 -07:00
parent b3b4bee062
commit 0402a8b20b
Signed by: Zander671
GPG Key ID: 5FD0394ADBD72730

View File

@ -22,4 +22,15 @@ source "${ZSH_CONFIG_DIR}/init.zsh"
```
3. Optionally, set some other variables (before the `source` line):
* ZSH_BOOKMARK_DIR: Bookmark directory (default: ~/.cache/zsh/bookmarks)
* ZSH_BOOKMARK_LS: If true, run `ls` after jumping to a bookmark
* ZSH_BOOKMARK_LS: If true, run `ls` after jumping to a bookmark (default:
true)
* ZSH_USER_DIR: Directory containing configuration files (see below, default:
~/.zsh.d)
### Configuration
To configure, create `~/.zsh.d` (or set ZSH_USER_DIR as described above). The
create either of the option files `init.zsh` and `early-init.zsh`. The former is
run in the middle of startup, after most plugins have been initialized, but
before ones related to command history, auto-complete, etc. The latter is run as
the first thing in the configuration file (after `autoload -U compinit &&
compinit`).