Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/heyjaywilson/dotfiles
My dot files I use for various macOS configuration
https://github.com/heyjaywilson/dotfiles
Last synced: 11 days ago
JSON representation
My dot files I use for various macOS configuration
- Host: GitHub
- URL: https://github.com/heyjaywilson/dotfiles
- Owner: heyjaywilson
- Created: 2022-05-22T16:58:33.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-05-24T18:35:58.000Z (over 2 years ago)
- Last Synced: 2024-05-02T01:05:35.973Z (7 months ago)
- Language: Shell
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotfiles
My dot files I use for various macOS configuration
## Setup
Add this code to your `~/.zshrc` file
```bash
# Fig pre block. Keep at the top of this file.
. "$HOME/.fig/shell/zshrc.pre.zsh"
for conf in "$HOME/Developer/personal/dotfiles/"*.zsh; do #make sure to change this to the directory where the dotfiles is cloned
source "${conf}"
done
unset conf# Uncomment the code block below if there are no private files
# needed
#
# for conf in "$HOME/Developer/personal/dotfiles/#private_files/"*.zsh; do
# source "${conf}"
# done
# unset conf# Fig post block. Keep at the bottom of this file.
. "$HOME/.fig/shell/zshrc.post.zsh"
```