├── .aliasesrc ├── .antigenrc ├── .gitconfig ├── .gitignore ├── .npmrc ├── .tool-versions ├── .zprofile ├── .zshrc ├── Brewfile ├── README.md ├── bootstrap.sh └── link.sh /.aliasesrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/dotfiles/HEAD/.aliasesrc -------------------------------------------------------------------------------- /.antigenrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/dotfiles/HEAD/.antigenrc -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/dotfiles/HEAD/.gitconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .vscode/ 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | prefix=~/.node_modules 2 | //registry.npmjs.org/:_authToken=${NPM_TOKEN} 3 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | golang 1.17 2 | nodejs 16.9.0 3 | direnv 2.30.3 4 | python 3.12.1 5 | -------------------------------------------------------------------------------- /.zprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/dotfiles/HEAD/.zprofile -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/dotfiles/HEAD/.zshrc -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/dotfiles/HEAD/Brewfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/dotfiles/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /link.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/dotfiles/HEAD/link.sh --------------------------------------------------------------------------------