├── .gitignore ├── README.md ├── git ├── gitconfig │ └── .gitconfig └── gitmessage │ └── .gitmessage ├── images ├── Odin.png ├── hero_screenshot.png └── odin.sketch ├── makefile ├── odin.zsh-theme └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerreckart/odin/HEAD/README.md -------------------------------------------------------------------------------- /git/gitconfig/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerreckart/odin/HEAD/git/gitconfig/.gitconfig -------------------------------------------------------------------------------- /git/gitmessage/.gitmessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerreckart/odin/HEAD/git/gitmessage/.gitmessage -------------------------------------------------------------------------------- /images/Odin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerreckart/odin/HEAD/images/Odin.png -------------------------------------------------------------------------------- /images/hero_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerreckart/odin/HEAD/images/hero_screenshot.png -------------------------------------------------------------------------------- /images/odin.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerreckart/odin/HEAD/images/odin.sketch -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerreckart/odin/HEAD/makefile -------------------------------------------------------------------------------- /odin.zsh-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerreckart/odin/HEAD/odin.zsh-theme -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerreckart/odin/HEAD/package.json --------------------------------------------------------------------------------