├── .bash_aliases ├── .bash_profile ├── .bin ├── curlt ├── diff-highlight ├── div ├── git-conflicts ├── kgrep ├── png2jpg ├── print-256-colors ├── prof2png └── xmlsec-fix ├── .config ├── fish │ ├── config.fish │ └── functions │ │ ├── fish_prompt.fish │ │ ├── fish_prompt_git.fish │ │ ├── fish_right_prompt.fish │ │ ├── fish_user_key_bindings.fish │ │ ├── git_branch_name.fish │ │ ├── git_diverged.fish │ │ ├── git_stashed.fish │ │ ├── git_status.fish │ │ ├── proj.fish │ │ ├── prompt_face.fish │ │ └── prompt_pwd.fish └── iterm │ └── com.googlecode.iterm2.plist ├── .gitconfig ├── .gitignore ├── .gitignore_global ├── .hushlogin ├── .ideavimrc ├── .inputrc ├── .mostrc ├── .pdbrc ├── .psqlrc ├── .screenrc ├── .tmux.conf ├── .vimrc ├── .zsh ├── cls.zsh ├── command-line.zsh ├── proj.zsh ├── prompt-git-status.py └── prompt.zsh ├── .zshrc ├── Brewfile ├── LICENSE └── README.md /.bash_aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.bash_aliases -------------------------------------------------------------------------------- /.bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.bash_profile -------------------------------------------------------------------------------- /.bin/curlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.bin/curlt -------------------------------------------------------------------------------- /.bin/diff-highlight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.bin/diff-highlight -------------------------------------------------------------------------------- /.bin/div: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.bin/div -------------------------------------------------------------------------------- /.bin/git-conflicts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.bin/git-conflicts -------------------------------------------------------------------------------- /.bin/kgrep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.bin/kgrep -------------------------------------------------------------------------------- /.bin/png2jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.bin/png2jpg -------------------------------------------------------------------------------- /.bin/print-256-colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.bin/print-256-colors -------------------------------------------------------------------------------- /.bin/prof2png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.bin/prof2png -------------------------------------------------------------------------------- /.bin/xmlsec-fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.bin/xmlsec-fix -------------------------------------------------------------------------------- /.config/fish/config.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.config/fish/config.fish -------------------------------------------------------------------------------- /.config/fish/functions/fish_prompt.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.config/fish/functions/fish_prompt.fish -------------------------------------------------------------------------------- /.config/fish/functions/fish_prompt_git.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.config/fish/functions/fish_prompt_git.fish -------------------------------------------------------------------------------- /.config/fish/functions/fish_right_prompt.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.config/fish/functions/fish_right_prompt.fish -------------------------------------------------------------------------------- /.config/fish/functions/fish_user_key_bindings.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.config/fish/functions/fish_user_key_bindings.fish -------------------------------------------------------------------------------- /.config/fish/functions/git_branch_name.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.config/fish/functions/git_branch_name.fish -------------------------------------------------------------------------------- /.config/fish/functions/git_diverged.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.config/fish/functions/git_diverged.fish -------------------------------------------------------------------------------- /.config/fish/functions/git_stashed.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.config/fish/functions/git_stashed.fish -------------------------------------------------------------------------------- /.config/fish/functions/git_status.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.config/fish/functions/git_status.fish -------------------------------------------------------------------------------- /.config/fish/functions/proj.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.config/fish/functions/proj.fish -------------------------------------------------------------------------------- /.config/fish/functions/prompt_face.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.config/fish/functions/prompt_face.fish -------------------------------------------------------------------------------- /.config/fish/functions/prompt_pwd.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.config/fish/functions/prompt_pwd.fish -------------------------------------------------------------------------------- /.config/iterm/com.googlecode.iterm2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.config/iterm/com.googlecode.iterm2.plist -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.gitconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitignore_global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.gitignore_global -------------------------------------------------------------------------------- /.hushlogin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.ideavimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.ideavimrc -------------------------------------------------------------------------------- /.inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.inputrc -------------------------------------------------------------------------------- /.mostrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.mostrc -------------------------------------------------------------------------------- /.pdbrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.pdbrc -------------------------------------------------------------------------------- /.psqlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.psqlrc -------------------------------------------------------------------------------- /.screenrc: -------------------------------------------------------------------------------- 1 | escape ^A^A 2 | -------------------------------------------------------------------------------- /.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.tmux.conf -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.vimrc -------------------------------------------------------------------------------- /.zsh/cls.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.zsh/cls.zsh -------------------------------------------------------------------------------- /.zsh/command-line.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.zsh/command-line.zsh -------------------------------------------------------------------------------- /.zsh/proj.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.zsh/proj.zsh -------------------------------------------------------------------------------- /.zsh/prompt-git-status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.zsh/prompt-git-status.py -------------------------------------------------------------------------------- /.zsh/prompt.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.zsh/prompt.zsh -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/.zshrc -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/Brewfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/dotfiles/HEAD/README.md --------------------------------------------------------------------------------