├── .gitignore ├── README.md ├── dotfiles ├── .bash_profile ├── .bashrc ├── .config │ ├── fish │ │ ├── completions │ │ │ └── fisher.fish │ │ ├── conf.d │ │ │ └── fish-ssh-agent.fish │ │ ├── config.fish │ │ ├── fish_plugins │ │ ├── fish_variables │ │ └── functions │ │ │ ├── __ssh_agent_is_started.fish │ │ │ ├── __ssh_agent_start.fish │ │ │ └── fisher.fish │ └── omf │ │ ├── bundle │ │ ├── channel │ │ └── theme ├── .curlrc ├── .gitconfig ├── .gitignore ├── .hushlogin ├── .inputrc ├── .screenrc ├── .tmux.conf ├── .wgetrc └── .zshrc ├── files ├── Dracula.itermcolors ├── Dracula.itermprofiles.json ├── Dracula.style ├── Dracula.terminal ├── Shortcuts.json ├── Solarized Color Scheme.sublime-package ├── Solarized_Dark.itermcolors ├── Solarized_Dark.terminal ├── screenshot.png └── termk.itermcolors ├── remote_install.sh ├── scripts ├── 3dprinting.sh ├── brew_cleanup.sh ├── brew_install.sh ├── cli_core.sh ├── cloud │ ├── aws.sh │ ├── gcp.sh │ └── openfaas.sh ├── development.sh ├── dotfiles.sh ├── fonts.sh ├── hacker_tools.sh ├── macos.sh ├── productivity.sh ├── programming │ ├── erlang.sh │ ├── go.sh │ ├── java.sh │ ├── javascript.sh │ ├── php.sh │ ├── python.sh │ ├── ruby.sh │ ├── rust.sh │ └── swift.sh ├── prototyping_boards.sh ├── shells │ ├── bash.sh │ ├── fish.sh │ └── zsh.sh └── xcode_cli_tools.sh └── setup.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/README.md -------------------------------------------------------------------------------- /dotfiles/.bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/dotfiles/.bash_profile -------------------------------------------------------------------------------- /dotfiles/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/dotfiles/.bashrc -------------------------------------------------------------------------------- /dotfiles/.config/fish/completions/fisher.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/dotfiles/.config/fish/completions/fisher.fish -------------------------------------------------------------------------------- /dotfiles/.config/fish/conf.d/fish-ssh-agent.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/dotfiles/.config/fish/conf.d/fish-ssh-agent.fish -------------------------------------------------------------------------------- /dotfiles/.config/fish/config.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/dotfiles/.config/fish/config.fish -------------------------------------------------------------------------------- /dotfiles/.config/fish/fish_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/dotfiles/.config/fish/fish_plugins -------------------------------------------------------------------------------- /dotfiles/.config/fish/fish_variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/dotfiles/.config/fish/fish_variables -------------------------------------------------------------------------------- /dotfiles/.config/fish/functions/__ssh_agent_is_started.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/dotfiles/.config/fish/functions/__ssh_agent_is_started.fish -------------------------------------------------------------------------------- /dotfiles/.config/fish/functions/__ssh_agent_start.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/dotfiles/.config/fish/functions/__ssh_agent_start.fish -------------------------------------------------------------------------------- /dotfiles/.config/fish/functions/fisher.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/dotfiles/.config/fish/functions/fisher.fish -------------------------------------------------------------------------------- /dotfiles/.config/omf/bundle: -------------------------------------------------------------------------------- 1 | theme default 2 | -------------------------------------------------------------------------------- /dotfiles/.config/omf/channel: -------------------------------------------------------------------------------- 1 | stable 2 | -------------------------------------------------------------------------------- /dotfiles/.config/omf/theme: -------------------------------------------------------------------------------- 1 | default 2 | -------------------------------------------------------------------------------- /dotfiles/.curlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/dotfiles/.curlrc -------------------------------------------------------------------------------- /dotfiles/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/dotfiles/.gitconfig -------------------------------------------------------------------------------- /dotfiles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/dotfiles/.gitignore -------------------------------------------------------------------------------- /dotfiles/.hushlogin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/dotfiles/.hushlogin -------------------------------------------------------------------------------- /dotfiles/.inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/dotfiles/.inputrc -------------------------------------------------------------------------------- /dotfiles/.screenrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/dotfiles/.screenrc -------------------------------------------------------------------------------- /dotfiles/.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/dotfiles/.tmux.conf -------------------------------------------------------------------------------- /dotfiles/.wgetrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/dotfiles/.wgetrc -------------------------------------------------------------------------------- /dotfiles/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/dotfiles/.zshrc -------------------------------------------------------------------------------- /files/Dracula.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/files/Dracula.itermcolors -------------------------------------------------------------------------------- /files/Dracula.itermprofiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/files/Dracula.itermprofiles.json -------------------------------------------------------------------------------- /files/Dracula.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/files/Dracula.style -------------------------------------------------------------------------------- /files/Dracula.terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/files/Dracula.terminal -------------------------------------------------------------------------------- /files/Shortcuts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/files/Shortcuts.json -------------------------------------------------------------------------------- /files/Solarized Color Scheme.sublime-package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/files/Solarized Color Scheme.sublime-package -------------------------------------------------------------------------------- /files/Solarized_Dark.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/files/Solarized_Dark.itermcolors -------------------------------------------------------------------------------- /files/Solarized_Dark.terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/files/Solarized_Dark.terminal -------------------------------------------------------------------------------- /files/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/files/screenshot.png -------------------------------------------------------------------------------- /files/termk.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/files/termk.itermcolors -------------------------------------------------------------------------------- /remote_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/remote_install.sh -------------------------------------------------------------------------------- /scripts/3dprinting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/3dprinting.sh -------------------------------------------------------------------------------- /scripts/brew_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/brew_cleanup.sh -------------------------------------------------------------------------------- /scripts/brew_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/brew_install.sh -------------------------------------------------------------------------------- /scripts/cli_core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/cli_core.sh -------------------------------------------------------------------------------- /scripts/cloud/aws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/cloud/aws.sh -------------------------------------------------------------------------------- /scripts/cloud/gcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/cloud/gcp.sh -------------------------------------------------------------------------------- /scripts/cloud/openfaas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/cloud/openfaas.sh -------------------------------------------------------------------------------- /scripts/development.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/development.sh -------------------------------------------------------------------------------- /scripts/dotfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/dotfiles.sh -------------------------------------------------------------------------------- /scripts/fonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/fonts.sh -------------------------------------------------------------------------------- /scripts/hacker_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/hacker_tools.sh -------------------------------------------------------------------------------- /scripts/macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/macos.sh -------------------------------------------------------------------------------- /scripts/productivity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/productivity.sh -------------------------------------------------------------------------------- /scripts/programming/erlang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/programming/erlang.sh -------------------------------------------------------------------------------- /scripts/programming/go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/programming/go.sh -------------------------------------------------------------------------------- /scripts/programming/java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/programming/java.sh -------------------------------------------------------------------------------- /scripts/programming/javascript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/programming/javascript.sh -------------------------------------------------------------------------------- /scripts/programming/php.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/programming/php.sh -------------------------------------------------------------------------------- /scripts/programming/python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/programming/python.sh -------------------------------------------------------------------------------- /scripts/programming/ruby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/programming/ruby.sh -------------------------------------------------------------------------------- /scripts/programming/rust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/programming/rust.sh -------------------------------------------------------------------------------- /scripts/programming/swift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/programming/swift.sh -------------------------------------------------------------------------------- /scripts/prototyping_boards.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/prototyping_boards.sh -------------------------------------------------------------------------------- /scripts/shells/bash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/shells/bash.sh -------------------------------------------------------------------------------- /scripts/shells/fish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/shells/fish.sh -------------------------------------------------------------------------------- /scripts/shells/zsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/shells/zsh.sh -------------------------------------------------------------------------------- /scripts/xcode_cli_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/scripts/xcode_cli_tools.sh -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwyles/bootstrap-macos/HEAD/setup.sh --------------------------------------------------------------------------------