https://github.com/jnylen/dotenv
https://github.com/jnylen/dotenv
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jnylen/dotenv
- Owner: jnylen
- Created: 2020-06-13T21:02:18.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-08-01T00:54:08.000Z (almost 3 years ago)
- Last Synced: 2025-01-02T19:41:53.725Z (over 1 year ago)
- Language: Shell
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotenv
My development environment.
## zsh
Install homebrew (brew.sh).
Then do these commands:
```bash
brew install coreutils antidote
brew install zsh
chsh -s `which zsh`
cp zsh/zshrc ~/.zshrc
cp zsh/dircolors ~/.dircolors
cp zsh/zsh_plugins.txt ~/.zsh_plugins.txt
mkdir -p ~/.zsh
cp -R zsh/files/* ~/.zsh
antidote bundle <~/.zsh_plugins.txt >~/.zsh_plugins.zsh
```
For antidote to work:
```bash
source '/usr/share/zsh-antidote/antidote.zsh'
antidote load
source ~/.zsh_plugins.zsh
```
For git (Follow [this link for GPG](https://docs.github.com/en/authentication/managing-commit-signature-verification/generating-a-new-gpg-key)):
```bash
git config --global commit.gpgsign true
gpg --gen-key
git config --global user.signingkey
```