├── .gitignore ├── .gitmodules ├── HALLOFSHAME.md ├── LICENSE ├── README.md ├── X11 └── Xresources ├── asciinema ├── .gitignore └── config.sample ├── bash ├── bash_profile └── bashrc ├── brew ├── formulae ├── init ├── installed ├── postflight └── taps ├── cask ├── brewcask-stagedpath.rb ├── casks ├── init ├── installed ├── notes └── postflight ├── cmus └── rc ├── colordiff └── colordiffrc ├── curl └── .curlrc ├── dircolors └── dir_colors ├── emacs ├── .gitignore ├── custom-tty.el ├── custom-window.el ├── init.el ├── lisp │ ├── misc.el │ └── pasteboard.el ├── snippets │ ├── .gitignore │ ├── html-mode │ │ ├── css │ │ ├── js │ │ ├── mobile │ │ ├── refresh │ │ ├── utf8-html4.01 │ │ ├── utf8-html5 │ │ └── xhtml │ ├── python-mode │ │ ├── attributes │ │ ├── main │ │ ├── methods │ │ ├── other-parameters │ │ ├── parameters │ │ ├── raises │ │ ├── returns │ │ ├── seealso │ │ └── yield │ └── sh-mode │ │ ├── argparse │ │ ├── command │ │ ├── error │ │ ├── fatal_error │ │ ├── getopts │ │ ├── here │ │ ├── here-conservative │ │ ├── milestone │ │ ├── note │ │ ├── progress │ │ └── warning └── templates │ ├── bash.el │ ├── c.el │ ├── html5.el │ ├── latex │ ├── amsart-preamble.tex │ └── latex.el │ ├── perl.el │ ├── python.el │ ├── ruby.el │ ├── userscript.el │ └── zsh.el ├── env ├── env.d ├── .gitignore ├── acd_cli ├── aspell ├── browser ├── curl ├── dropbox ├── dvdcss ├── fasd ├── gem ├── go ├── grip ├── homebrew ├── homebrew-cask ├── httpie ├── ipython ├── less ├── matplotlib ├── mutt ├── node ├── npm ├── pry ├── pyenv ├── pylint ├── python ├── subversion └── wget ├── fontconfig ├── fetchfonts └── fonts.conf ├── gem ├── .gitignore ├── Gemfile ├── init └── update ├── ghc └── ghci.conf ├── git ├── .gitignore ├── config ├── ignore └── template │ ├── description │ ├── hooks │ ├── applypatch-msg.sample │ ├── commit-msg.sample │ ├── post-update.sample │ ├── pre-applypatch.sample │ ├── pre-commit │ ├── pre-push.sample │ ├── pre-rebase.sample │ ├── prepare-commit-msg.sample │ └── update.sample │ └── info │ └── exclude ├── github ├── .gitignore └── conf.yml.sample ├── gnupg ├── .gitignore └── gpg.conf ├── goo.gl ├── .gitignore └── oauth.json.sample ├── grip ├── .gitignore └── settings.py ├── httpie └── config.json ├── imgur ├── .gitignore └── imgur.conf.sample ├── ipython ├── .gitignore └── profile_default │ ├── .gitignore │ ├── ipython_config.py │ ├── startup │ └── .gitignore │ └── static │ └── custom │ ├── custom.css │ └── custom.js ├── iterm2 └── com.googlecode.iterm2.plist ├── linuxbrew ├── debian.init ├── general.init └── taps ├── mathematica └── PastelSolarized.nb ├── mpv ├── .gitignore ├── input.conf ├── lua-settings │ └── osc.conf └── mpv.conf ├── mutt └── muttrc ├── npm ├── config └── npm ├── onedrive ├── .gitignore └── conf.ini.template ├── pandoc └── template.html ├── parallel ├── .gitignore └── will-cite ├── pip ├── pip2 └── pip3 ├── provision ├── provision.d ├── brew ├── cask ├── cron ├── dotfiles ├── emacs ├── gem ├── messaging_helpers ├── misc ├── python ├── scripts └── zshglobalinit ├── pry └── pryrc ├── pyenv ├── .gitignore └── virtualenvwrapper_hooks │ ├── get_env_details │ ├── initialize │ ├── postactivate │ ├── postdeactivate │ ├── postmkproject │ ├── postmkvirtualenv │ ├── postrmvirtualenv │ ├── preactivate │ ├── predeactivate │ ├── premkproject │ ├── premkvirtualenv │ └── prermvirtualenv ├── pylint └── pylintrc ├── pypi ├── .gitignore └── pypirc.template ├── qlstephen └── QLStephenExtensionsBlackList.plist ├── setup ├── tmux └── tmux.conf ├── wget └── wgetrc ├── youtube-dl └── config └── zsh ├── .gitignore ├── README.md ├── extras ├── aliases.zsh ├── completions.zsh └── functions.zsh ├── zlogin ├── zlogout ├── zprofile ├── zshenv └── zshrc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/.gitmodules -------------------------------------------------------------------------------- /HALLOFSHAME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/HALLOFSHAME.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /X11/Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/X11/Xresources -------------------------------------------------------------------------------- /asciinema/.gitignore: -------------------------------------------------------------------------------- 1 | config 2 | -------------------------------------------------------------------------------- /asciinema/config.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/asciinema/config.sample -------------------------------------------------------------------------------- /bash/bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/bash/bash_profile -------------------------------------------------------------------------------- /bash/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/bash/bashrc -------------------------------------------------------------------------------- /brew/formulae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/brew/formulae -------------------------------------------------------------------------------- /brew/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/brew/init -------------------------------------------------------------------------------- /brew/installed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/brew/installed -------------------------------------------------------------------------------- /brew/postflight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/brew/postflight -------------------------------------------------------------------------------- /brew/taps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/brew/taps -------------------------------------------------------------------------------- /cask/brewcask-stagedpath.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/cask/brewcask-stagedpath.rb -------------------------------------------------------------------------------- /cask/casks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/cask/casks -------------------------------------------------------------------------------- /cask/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/cask/init -------------------------------------------------------------------------------- /cask/installed: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env zsh 2 | [[ -d /opt/homebrew-cask/Caskroom/$1 ]] 3 | -------------------------------------------------------------------------------- /cask/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/cask/notes -------------------------------------------------------------------------------- /cask/postflight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/cask/postflight -------------------------------------------------------------------------------- /cmus/rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/cmus/rc -------------------------------------------------------------------------------- /colordiff/colordiffrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/colordiff/colordiffrc -------------------------------------------------------------------------------- /curl/.curlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/curl/.curlrc -------------------------------------------------------------------------------- /dircolors/dir_colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/dircolors/dir_colors -------------------------------------------------------------------------------- /emacs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/.gitignore -------------------------------------------------------------------------------- /emacs/custom-tty.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/custom-tty.el -------------------------------------------------------------------------------- /emacs/custom-window.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/custom-window.el -------------------------------------------------------------------------------- /emacs/init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/init.el -------------------------------------------------------------------------------- /emacs/lisp/misc.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/lisp/misc.el -------------------------------------------------------------------------------- /emacs/lisp/pasteboard.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/lisp/pasteboard.el -------------------------------------------------------------------------------- /emacs/snippets/.gitignore: -------------------------------------------------------------------------------- 1 | .yas-compiled-snippets.el 2 | -------------------------------------------------------------------------------- /emacs/snippets/html-mode/css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/html-mode/css -------------------------------------------------------------------------------- /emacs/snippets/html-mode/js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/html-mode/js -------------------------------------------------------------------------------- /emacs/snippets/html-mode/mobile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/html-mode/mobile -------------------------------------------------------------------------------- /emacs/snippets/html-mode/refresh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emacs/snippets/html-mode/utf8-html4.01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/html-mode/utf8-html4.01 -------------------------------------------------------------------------------- /emacs/snippets/html-mode/utf8-html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/html-mode/utf8-html5 -------------------------------------------------------------------------------- /emacs/snippets/html-mode/xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/html-mode/xhtml -------------------------------------------------------------------------------- /emacs/snippets/python-mode/attributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/python-mode/attributes -------------------------------------------------------------------------------- /emacs/snippets/python-mode/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/python-mode/main -------------------------------------------------------------------------------- /emacs/snippets/python-mode/methods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/python-mode/methods -------------------------------------------------------------------------------- /emacs/snippets/python-mode/other-parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/python-mode/other-parameters -------------------------------------------------------------------------------- /emacs/snippets/python-mode/parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/python-mode/parameters -------------------------------------------------------------------------------- /emacs/snippets/python-mode/raises: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/python-mode/raises -------------------------------------------------------------------------------- /emacs/snippets/python-mode/returns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/python-mode/returns -------------------------------------------------------------------------------- /emacs/snippets/python-mode/seealso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/python-mode/seealso -------------------------------------------------------------------------------- /emacs/snippets/python-mode/yield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/python-mode/yield -------------------------------------------------------------------------------- /emacs/snippets/sh-mode/argparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/sh-mode/argparse -------------------------------------------------------------------------------- /emacs/snippets/sh-mode/command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/sh-mode/command -------------------------------------------------------------------------------- /emacs/snippets/sh-mode/error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/sh-mode/error -------------------------------------------------------------------------------- /emacs/snippets/sh-mode/fatal_error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/sh-mode/fatal_error -------------------------------------------------------------------------------- /emacs/snippets/sh-mode/getopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/sh-mode/getopts -------------------------------------------------------------------------------- /emacs/snippets/sh-mode/here: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/sh-mode/here -------------------------------------------------------------------------------- /emacs/snippets/sh-mode/here-conservative: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/sh-mode/here-conservative -------------------------------------------------------------------------------- /emacs/snippets/sh-mode/milestone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/sh-mode/milestone -------------------------------------------------------------------------------- /emacs/snippets/sh-mode/note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/sh-mode/note -------------------------------------------------------------------------------- /emacs/snippets/sh-mode/progress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/sh-mode/progress -------------------------------------------------------------------------------- /emacs/snippets/sh-mode/warning: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/snippets/sh-mode/warning -------------------------------------------------------------------------------- /emacs/templates/bash.el: -------------------------------------------------------------------------------- 1 | '(nil 2 | "#!/usr/bin/env bash\n" 3 | _) 4 | -------------------------------------------------------------------------------- /emacs/templates/c.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/templates/c.el -------------------------------------------------------------------------------- /emacs/templates/html5.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/templates/html5.el -------------------------------------------------------------------------------- /emacs/templates/latex/amsart-preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/templates/latex/amsart-preamble.tex -------------------------------------------------------------------------------- /emacs/templates/latex/latex.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/templates/latex/latex.el -------------------------------------------------------------------------------- /emacs/templates/perl.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/templates/perl.el -------------------------------------------------------------------------------- /emacs/templates/python.el: -------------------------------------------------------------------------------- 1 | '(nil 2 | "#!/usr/bin/env python3\n" 3 | _) 4 | -------------------------------------------------------------------------------- /emacs/templates/ruby.el: -------------------------------------------------------------------------------- 1 | '(nil 2 | "#!/usr/bin/env ruby\n" 3 | _) 4 | -------------------------------------------------------------------------------- /emacs/templates/userscript.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/emacs/templates/userscript.el -------------------------------------------------------------------------------- /emacs/templates/zsh.el: -------------------------------------------------------------------------------- 1 | '(nil 2 | "#!/usr/bin/env zsh\n" 3 | _) 4 | -------------------------------------------------------------------------------- /env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env -------------------------------------------------------------------------------- /env.d/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/.gitignore -------------------------------------------------------------------------------- /env.d/acd_cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/acd_cli -------------------------------------------------------------------------------- /env.d/aspell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/aspell -------------------------------------------------------------------------------- /env.d/browser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/browser -------------------------------------------------------------------------------- /env.d/curl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/curl -------------------------------------------------------------------------------- /env.d/dropbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/dropbox -------------------------------------------------------------------------------- /env.d/dvdcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/dvdcss -------------------------------------------------------------------------------- /env.d/fasd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/fasd -------------------------------------------------------------------------------- /env.d/gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/gem -------------------------------------------------------------------------------- /env.d/go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/go -------------------------------------------------------------------------------- /env.d/grip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/grip -------------------------------------------------------------------------------- /env.d/homebrew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/homebrew -------------------------------------------------------------------------------- /env.d/homebrew-cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/homebrew-cask -------------------------------------------------------------------------------- /env.d/httpie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/httpie -------------------------------------------------------------------------------- /env.d/ipython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/ipython -------------------------------------------------------------------------------- /env.d/less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/less -------------------------------------------------------------------------------- /env.d/matplotlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/matplotlib -------------------------------------------------------------------------------- /env.d/mutt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/mutt -------------------------------------------------------------------------------- /env.d/node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/node -------------------------------------------------------------------------------- /env.d/npm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/npm -------------------------------------------------------------------------------- /env.d/pry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/pry -------------------------------------------------------------------------------- /env.d/pyenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/pyenv -------------------------------------------------------------------------------- /env.d/pylint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/pylint -------------------------------------------------------------------------------- /env.d/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/python -------------------------------------------------------------------------------- /env.d/subversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/subversion -------------------------------------------------------------------------------- /env.d/wget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/env.d/wget -------------------------------------------------------------------------------- /fontconfig/fetchfonts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/fontconfig/fetchfonts -------------------------------------------------------------------------------- /fontconfig/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/fontconfig/fonts.conf -------------------------------------------------------------------------------- /gem/.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | -------------------------------------------------------------------------------- /gem/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/gem/Gemfile -------------------------------------------------------------------------------- /gem/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/gem/init -------------------------------------------------------------------------------- /gem/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/gem/update -------------------------------------------------------------------------------- /ghc/ghci.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/ghc/ghci.conf -------------------------------------------------------------------------------- /git/.gitignore: -------------------------------------------------------------------------------- 1 | config.local 2 | gitk 3 | -------------------------------------------------------------------------------- /git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/git/config -------------------------------------------------------------------------------- /git/ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/git/ignore -------------------------------------------------------------------------------- /git/template/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/git/template/description -------------------------------------------------------------------------------- /git/template/hooks/applypatch-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/git/template/hooks/applypatch-msg.sample -------------------------------------------------------------------------------- /git/template/hooks/commit-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/git/template/hooks/commit-msg.sample -------------------------------------------------------------------------------- /git/template/hooks/post-update.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/git/template/hooks/post-update.sample -------------------------------------------------------------------------------- /git/template/hooks/pre-applypatch.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/git/template/hooks/pre-applypatch.sample -------------------------------------------------------------------------------- /git/template/hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/git/template/hooks/pre-commit -------------------------------------------------------------------------------- /git/template/hooks/pre-push.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/git/template/hooks/pre-push.sample -------------------------------------------------------------------------------- /git/template/hooks/pre-rebase.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/git/template/hooks/pre-rebase.sample -------------------------------------------------------------------------------- /git/template/hooks/prepare-commit-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/git/template/hooks/prepare-commit-msg.sample -------------------------------------------------------------------------------- /git/template/hooks/update.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/git/template/hooks/update.sample -------------------------------------------------------------------------------- /git/template/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/git/template/info/exclude -------------------------------------------------------------------------------- /github/.gitignore: -------------------------------------------------------------------------------- 1 | conf.yml 2 | -------------------------------------------------------------------------------- /github/conf.yml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/github/conf.yml.sample -------------------------------------------------------------------------------- /gnupg/.gitignore: -------------------------------------------------------------------------------- 1 | random_seed 2 | -------------------------------------------------------------------------------- /gnupg/gpg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/gnupg/gpg.conf -------------------------------------------------------------------------------- /goo.gl/.gitignore: -------------------------------------------------------------------------------- 1 | oauth.json 2 | -------------------------------------------------------------------------------- /goo.gl/oauth.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/goo.gl/oauth.json.sample -------------------------------------------------------------------------------- /grip/.gitignore: -------------------------------------------------------------------------------- 1 | token 2 | -------------------------------------------------------------------------------- /grip/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/grip/settings.py -------------------------------------------------------------------------------- /httpie/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/httpie/config.json -------------------------------------------------------------------------------- /imgur/.gitignore: -------------------------------------------------------------------------------- 1 | imgur.conf 2 | -------------------------------------------------------------------------------- /imgur/imgur.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/imgur/imgur.conf.sample -------------------------------------------------------------------------------- /ipython/.gitignore: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /ipython/profile_default/.gitignore: -------------------------------------------------------------------------------- 1 | db 2 | log 3 | pid 4 | security 5 | history.sqlite 6 | -------------------------------------------------------------------------------- /ipython/profile_default/ipython_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/ipython/profile_default/ipython_config.py -------------------------------------------------------------------------------- /ipython/profile_default/startup/.gitignore: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /ipython/profile_default/static/custom/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/ipython/profile_default/static/custom/custom.css -------------------------------------------------------------------------------- /ipython/profile_default/static/custom/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/ipython/profile_default/static/custom/custom.js -------------------------------------------------------------------------------- /iterm2/com.googlecode.iterm2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/iterm2/com.googlecode.iterm2.plist -------------------------------------------------------------------------------- /linuxbrew/debian.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/linuxbrew/debian.init -------------------------------------------------------------------------------- /linuxbrew/general.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/linuxbrew/general.init -------------------------------------------------------------------------------- /linuxbrew/taps: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mathematica/PastelSolarized.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/mathematica/PastelSolarized.nb -------------------------------------------------------------------------------- /mpv/.gitignore: -------------------------------------------------------------------------------- 1 | watch_later/ 2 | -------------------------------------------------------------------------------- /mpv/input.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/mpv/input.conf -------------------------------------------------------------------------------- /mpv/lua-settings/osc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/mpv/lua-settings/osc.conf -------------------------------------------------------------------------------- /mpv/mpv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/mpv/mpv.conf -------------------------------------------------------------------------------- /mutt/muttrc: -------------------------------------------------------------------------------- 1 | set folder=~/.local/share/mail 2 | set allow_ansi = yes 3 | -------------------------------------------------------------------------------- /npm/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/npm/config -------------------------------------------------------------------------------- /npm/npm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/npm/npm -------------------------------------------------------------------------------- /onedrive/.gitignore: -------------------------------------------------------------------------------- 1 | conf.ini 2 | -------------------------------------------------------------------------------- /onedrive/conf.ini.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/onedrive/conf.ini.template -------------------------------------------------------------------------------- /pandoc/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/pandoc/template.html -------------------------------------------------------------------------------- /parallel/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | -------------------------------------------------------------------------------- /parallel/will-cite: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pip/pip2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/pip/pip2 -------------------------------------------------------------------------------- /pip/pip3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/pip/pip3 -------------------------------------------------------------------------------- /provision: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/provision -------------------------------------------------------------------------------- /provision.d/brew: -------------------------------------------------------------------------------- 1 | ../brew/init -------------------------------------------------------------------------------- /provision.d/cask: -------------------------------------------------------------------------------- 1 | ../cask/init -------------------------------------------------------------------------------- /provision.d/cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/provision.d/cron -------------------------------------------------------------------------------- /provision.d/dotfiles: -------------------------------------------------------------------------------- 1 | ../setup -------------------------------------------------------------------------------- /provision.d/emacs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/provision.d/emacs -------------------------------------------------------------------------------- /provision.d/gem: -------------------------------------------------------------------------------- 1 | ../gem/init -------------------------------------------------------------------------------- /provision.d/messaging_helpers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/provision.d/messaging_helpers -------------------------------------------------------------------------------- /provision.d/misc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/provision.d/misc -------------------------------------------------------------------------------- /provision.d/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/provision.d/python -------------------------------------------------------------------------------- /provision.d/scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/provision.d/scripts -------------------------------------------------------------------------------- /provision.d/zshglobalinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/provision.d/zshglobalinit -------------------------------------------------------------------------------- /pry/pryrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/pry/pryrc -------------------------------------------------------------------------------- /pyenv/.gitignore: -------------------------------------------------------------------------------- 1 | version 2 | -------------------------------------------------------------------------------- /pyenv/virtualenvwrapper_hooks/get_env_details: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/pyenv/virtualenvwrapper_hooks/get_env_details -------------------------------------------------------------------------------- /pyenv/virtualenvwrapper_hooks/initialize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/pyenv/virtualenvwrapper_hooks/initialize -------------------------------------------------------------------------------- /pyenv/virtualenvwrapper_hooks/postactivate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/pyenv/virtualenvwrapper_hooks/postactivate -------------------------------------------------------------------------------- /pyenv/virtualenvwrapper_hooks/postdeactivate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/pyenv/virtualenvwrapper_hooks/postdeactivate -------------------------------------------------------------------------------- /pyenv/virtualenvwrapper_hooks/postmkproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/pyenv/virtualenvwrapper_hooks/postmkproject -------------------------------------------------------------------------------- /pyenv/virtualenvwrapper_hooks/postmkvirtualenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/pyenv/virtualenvwrapper_hooks/postmkvirtualenv -------------------------------------------------------------------------------- /pyenv/virtualenvwrapper_hooks/postrmvirtualenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/pyenv/virtualenvwrapper_hooks/postrmvirtualenv -------------------------------------------------------------------------------- /pyenv/virtualenvwrapper_hooks/preactivate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/pyenv/virtualenvwrapper_hooks/preactivate -------------------------------------------------------------------------------- /pyenv/virtualenvwrapper_hooks/predeactivate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/pyenv/virtualenvwrapper_hooks/predeactivate -------------------------------------------------------------------------------- /pyenv/virtualenvwrapper_hooks/premkproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/pyenv/virtualenvwrapper_hooks/premkproject -------------------------------------------------------------------------------- /pyenv/virtualenvwrapper_hooks/premkvirtualenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/pyenv/virtualenvwrapper_hooks/premkvirtualenv -------------------------------------------------------------------------------- /pyenv/virtualenvwrapper_hooks/prermvirtualenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/pyenv/virtualenvwrapper_hooks/prermvirtualenv -------------------------------------------------------------------------------- /pylint/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/pylint/pylintrc -------------------------------------------------------------------------------- /pypi/.gitignore: -------------------------------------------------------------------------------- 1 | pypirc 2 | -------------------------------------------------------------------------------- /pypi/pypirc.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/pypi/pypirc.template -------------------------------------------------------------------------------- /qlstephen/QLStephenExtensionsBlackList.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/qlstephen/QLStephenExtensionsBlackList.plist -------------------------------------------------------------------------------- /setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/setup -------------------------------------------------------------------------------- /tmux/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/tmux/tmux.conf -------------------------------------------------------------------------------- /wget/wgetrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/wget/wgetrc -------------------------------------------------------------------------------- /youtube-dl/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/youtube-dl/config -------------------------------------------------------------------------------- /zsh/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/zsh/.gitignore -------------------------------------------------------------------------------- /zsh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/zsh/README.md -------------------------------------------------------------------------------- /zsh/extras/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/zsh/extras/aliases.zsh -------------------------------------------------------------------------------- /zsh/extras/completions.zsh: -------------------------------------------------------------------------------- 1 | [[ $TERM == dumb ]] && return 1 2 | 3 | compdef _mpv mpv-launcher 4 | -------------------------------------------------------------------------------- /zsh/extras/functions.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/zsh/extras/functions.zsh -------------------------------------------------------------------------------- /zsh/zlogin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/zsh/zlogin -------------------------------------------------------------------------------- /zsh/zlogout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/zsh/zlogout -------------------------------------------------------------------------------- /zsh/zprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/zsh/zprofile -------------------------------------------------------------------------------- /zsh/zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/zsh/zshenv -------------------------------------------------------------------------------- /zsh/zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmwangx/dotfiles/HEAD/zsh/zshrc --------------------------------------------------------------------------------