dotfiles/zsh
James Patrick f2d6f3397b
Defer configuring ox-tufte until we need it.
2024-02-05 09:52:49 -05:00
..
cache Fixed issue with autocompletes not being loaded 2020-08-21 18:04:38 -04:00
environment homebrew path fix 2024-01-19 13:45:08 -05:00
modules Fixed formatting for helper scripts 2022-09-20 19:24:09 -04:00
README.md Update 'zsh/README.md' 2020-05-21 18:48:09 +00:00
makefile Refactored make targets. 2021-11-28 16:33:24 -05:00
zlogin Adding env header for emacs to pickup the correct mode 2023-06-07 10:19:25 -04:00
zlogout Adding env header for emacs to pickup the correct mode 2023-06-07 10:19:25 -04:00
zplug Defer configuring ox-tufte until we need it. 2024-02-05 09:52:49 -05:00
zprofile Adding env header for emacs to pickup the correct mode 2023-06-07 10:19:25 -04:00
zshenv Removed no longer existing configuration 2023-06-07 10:19:25 -04:00
zshrc Adding env header for emacs to pickup the correct mode 2023-06-07 10:19:25 -04:00

README.md

ZSH

Install

Install for this follows the norm for the rest of the dotfiles. cd to this directory and run

make install

or if you are on a machine where BSD Make is installed by default:

gmake install

File Structure.

The file structure looks something like this: Nodes with a trailing "δ" are directories.

zsh
├── environment δ 
│   ├── host δ
│   └── os δ
│       ├── darwin δ
│       └── linux-gnu δ
├── makefile
├── modules δ
├── transient δ
├── zlogin
├── zlogout
├── zplug
├── zprofile
├── zshenv
└── zshrc
  • environment :: This is the contains environment base logic and contains. At each step of the zsh loading process the env_loader function will load the corresponding file.
    • host :: Loaded Automatically. Conditionally loads by based on $HOST value.
    • os :: Loaded Automatically. Conditionally loads by based on $OSTYPE value.
  • makefile :: Install/Update/Remove makefile.
  • modules :: Local modules loaded by zplug.
  • transient :: Files that are required for zsh (eg history), that are not to be versioned.
  • zlogin/zlogout/zprofile/etc :: The default shell resource files. See here for more infomation on load order.
  • zplug :: How to load modules.