├── Aldente.md ├── Brewfile ├── LICENSE ├── Makefile ├── README.md ├── Taskfile.yml ├── dotfiles ├── .gitconfig ├── .zshrc └── README.md ├── install.sh └── vscode-settings ├── README.md ├── install-extensions.py └── vscode-extensions.txt /Aldente.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moabukar/DevOps-Tooling/HEAD/Aldente.md -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moabukar/DevOps-Tooling/HEAD/Brewfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moabukar/DevOps-Tooling/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moabukar/DevOps-Tooling/HEAD/README.md -------------------------------------------------------------------------------- /Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moabukar/DevOps-Tooling/HEAD/Taskfile.yml -------------------------------------------------------------------------------- /dotfiles/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moabukar/DevOps-Tooling/HEAD/dotfiles/.gitconfig -------------------------------------------------------------------------------- /dotfiles/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moabukar/DevOps-Tooling/HEAD/dotfiles/.zshrc -------------------------------------------------------------------------------- /dotfiles/README.md: -------------------------------------------------------------------------------- 1 | # A list of dotfiles I personally use 2 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moabukar/DevOps-Tooling/HEAD/install.sh -------------------------------------------------------------------------------- /vscode-settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moabukar/DevOps-Tooling/HEAD/vscode-settings/README.md -------------------------------------------------------------------------------- /vscode-settings/install-extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moabukar/DevOps-Tooling/HEAD/vscode-settings/install-extensions.py -------------------------------------------------------------------------------- /vscode-settings/vscode-extensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moabukar/DevOps-Tooling/HEAD/vscode-settings/vscode-extensions.txt --------------------------------------------------------------------------------