├── README.md ├── bin ├── +x ├── clone-github-org ├── clone-github-user ├── git-all ├── git-amend ├── git-linestat ├── git-listfiles ├── git-push-all ├── git-undo ├── httpcompression ├── idea-standalone ├── listening ├── maven-search ├── rmate ├── st └── upfind ├── dev ├── aliases.zsh ├── env.zsh ├── fleet.symlink │ └── themes │ │ └── one-dark-pro.json ├── functions.zsh ├── gradle-profiler.gitrepo ├── httpstat-1.gitpatch ├── httpstat.gitrepo ├── install.apt ├── install.homebrew ├── install.homebrew-cask ├── install.homebrew-cask.x86_64-native ├── install.homebrew-tap ├── install.linuxbrew ├── jenv.gitrepo ├── jenv.zsh ├── oh-my-zsh.plugins └── path.zsh ├── gaming ├── ec2gaming.gitrepo ├── install.homebrew-cask.x86_64-native └── path.zsh ├── git ├── functions.zsh ├── ghcd.zsh ├── ghclone.zsh ├── gitconfig_public.symlink ├── gitignore_global.symlink ├── install.homebrew └── post-install.sh ├── macos ├── README.md └── set-defaults.sh ├── system ├── README.md ├── aliases.zsh ├── env.zsh ├── grc.zsh ├── install.apt ├── install.homebrew ├── install.homebrew-cask └── install.linuxbrew └── terminal ├── com.googlecode.iterm2.plist ├── dircolors-solarized.gitrepo ├── dircolors.zsh ├── install.homebrew ├── install.homebrew-cask ├── oh-my-zsh.zsh ├── p10k.zsh.symlink └── powerlevel10k.themegitrepo /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /bin/+x: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | chmod +x $@ 3 | -------------------------------------------------------------------------------- /bin/clone-github-org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/bin/clone-github-org -------------------------------------------------------------------------------- /bin/clone-github-user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/bin/clone-github-user -------------------------------------------------------------------------------- /bin/git-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/bin/git-all -------------------------------------------------------------------------------- /bin/git-amend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/bin/git-amend -------------------------------------------------------------------------------- /bin/git-linestat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/bin/git-linestat -------------------------------------------------------------------------------- /bin/git-listfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/bin/git-listfiles -------------------------------------------------------------------------------- /bin/git-push-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/bin/git-push-all -------------------------------------------------------------------------------- /bin/git-undo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/bin/git-undo -------------------------------------------------------------------------------- /bin/httpcompression: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/bin/httpcompression -------------------------------------------------------------------------------- /bin/idea-standalone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/bin/idea-standalone -------------------------------------------------------------------------------- /bin/listening: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/bin/listening -------------------------------------------------------------------------------- /bin/maven-search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/bin/maven-search -------------------------------------------------------------------------------- /bin/rmate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/bin/rmate -------------------------------------------------------------------------------- /bin/st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/bin/st -------------------------------------------------------------------------------- /bin/upfind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/bin/upfind -------------------------------------------------------------------------------- /dev/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/dev/aliases.zsh -------------------------------------------------------------------------------- /dev/env.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/dev/env.zsh -------------------------------------------------------------------------------- /dev/fleet.symlink/themes/one-dark-pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/dev/fleet.symlink/themes/one-dark-pro.json -------------------------------------------------------------------------------- /dev/functions.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/dev/functions.zsh -------------------------------------------------------------------------------- /dev/gradle-profiler.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/dev/gradle-profiler.gitrepo -------------------------------------------------------------------------------- /dev/httpstat-1.gitpatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/dev/httpstat-1.gitpatch -------------------------------------------------------------------------------- /dev/httpstat.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/dev/httpstat.gitrepo -------------------------------------------------------------------------------- /dev/install.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/dev/install.apt -------------------------------------------------------------------------------- /dev/install.homebrew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/dev/install.homebrew -------------------------------------------------------------------------------- /dev/install.homebrew-cask: -------------------------------------------------------------------------------- 1 | jetbrains-toolbox 2 | zulu 3 | -------------------------------------------------------------------------------- /dev/install.homebrew-cask.x86_64-native: -------------------------------------------------------------------------------- 1 | docker 2 | -------------------------------------------------------------------------------- /dev/install.homebrew-tap: -------------------------------------------------------------------------------- 1 | buildpacks/tap 2 | gdubw/gng 3 | -------------------------------------------------------------------------------- /dev/install.linuxbrew: -------------------------------------------------------------------------------- 1 | bazelisk 2 | diff-so-fancy 3 | gh 4 | protobuf 5 | -------------------------------------------------------------------------------- /dev/jenv.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/dev/jenv.gitrepo -------------------------------------------------------------------------------- /dev/jenv.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/dev/jenv.zsh -------------------------------------------------------------------------------- /dev/oh-my-zsh.plugins: -------------------------------------------------------------------------------- 1 | mvn 2 | -------------------------------------------------------------------------------- /dev/path.zsh: -------------------------------------------------------------------------------- 1 | if [[ "Darwin" == "$(uname)" ]]; then 2 | export PATH="$HOME/.local/bin:$PATH" 3 | fi 4 | -------------------------------------------------------------------------------- /gaming/ec2gaming.gitrepo: -------------------------------------------------------------------------------- 1 | https://github.com/DanielThomas/ec2gaming.git 2 | -------------------------------------------------------------------------------- /gaming/install.homebrew-cask.x86_64-native: -------------------------------------------------------------------------------- 1 | steam 2 | -------------------------------------------------------------------------------- /gaming/path.zsh: -------------------------------------------------------------------------------- 1 | export PATH="$HOME/.ec2gaming:$PATH" 2 | -------------------------------------------------------------------------------- /git/functions.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/git/functions.zsh -------------------------------------------------------------------------------- /git/ghcd.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/git/ghcd.zsh -------------------------------------------------------------------------------- /git/ghclone.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/git/ghclone.zsh -------------------------------------------------------------------------------- /git/gitconfig_public.symlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/git/gitconfig_public.symlink -------------------------------------------------------------------------------- /git/gitignore_global.symlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/git/gitignore_global.symlink -------------------------------------------------------------------------------- /git/install.homebrew: -------------------------------------------------------------------------------- 1 | diff-so-fancy 2 | git 3 | gh 4 | -------------------------------------------------------------------------------- /git/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/git/post-install.sh -------------------------------------------------------------------------------- /macos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/macos/README.md -------------------------------------------------------------------------------- /macos/set-defaults.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/macos/set-defaults.sh -------------------------------------------------------------------------------- /system/README.md: -------------------------------------------------------------------------------- 1 | # System # 2 | 3 | http://zachholman.com/spark/ 4 | -------------------------------------------------------------------------------- /system/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/system/aliases.zsh -------------------------------------------------------------------------------- /system/env.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/system/env.zsh -------------------------------------------------------------------------------- /system/grc.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/system/grc.zsh -------------------------------------------------------------------------------- /system/install.apt: -------------------------------------------------------------------------------- 1 | silversearcher-ag 2 | tree 3 | unzip 4 | -------------------------------------------------------------------------------- /system/install.homebrew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/system/install.homebrew -------------------------------------------------------------------------------- /system/install.homebrew-cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/system/install.homebrew-cask -------------------------------------------------------------------------------- /system/install.linuxbrew: -------------------------------------------------------------------------------- 1 | ncdu 2 | -------------------------------------------------------------------------------- /terminal/com.googlecode.iterm2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/terminal/com.googlecode.iterm2.plist -------------------------------------------------------------------------------- /terminal/dircolors-solarized.gitrepo: -------------------------------------------------------------------------------- 1 | https://github.com/seebi/dircolors-solarized.git 2 | -------------------------------------------------------------------------------- /terminal/dircolors.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/terminal/dircolors.zsh -------------------------------------------------------------------------------- /terminal/install.homebrew: -------------------------------------------------------------------------------- 1 | zsh 2 | -------------------------------------------------------------------------------- /terminal/install.homebrew-cask: -------------------------------------------------------------------------------- 1 | iterm2 2 | -------------------------------------------------------------------------------- /terminal/oh-my-zsh.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/terminal/oh-my-zsh.zsh -------------------------------------------------------------------------------- /terminal/p10k.zsh.symlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielThomas/dotfiles/HEAD/terminal/p10k.zsh.symlink -------------------------------------------------------------------------------- /terminal/powerlevel10k.themegitrepo: -------------------------------------------------------------------------------- 1 | https://github.com/romkatv/powerlevel10k.git --------------------------------------------------------------------------------