├── .bundle └── config ├── .caprc ├── .colordiffrc ├── .config ├── ghostty │ └── config └── nvim │ ├── after │ ├── colors │ ├── etc │ ├── filetype.vim │ ├── ginit.vim │ ├── init.vim │ ├── rc │ └── snippets ├── .dotfiles.ignore ├── .gemrc ├── .gitconfig ├── .gitignore ├── .gitmodules ├── .global.gitignore ├── .hammerspoon └── init.lua ├── .my.cnf ├── .peco └── config.json ├── .powenv ├── .proverc ├── .pryrc ├── .screenrc ├── .slate.d └── google_chrome.sh ├── .slate.js ├── .tigrc ├── .tmux.conf ├── .tmux.d └── scripts │ ├── macbook-battery │ └── today ├── .travis.yml ├── .uim ├── .vim ├── .eskk │ └── .keep ├── .neocon │ └── .gitkeep ├── .unite │ └── .gitkeep ├── after │ ├── ftplugin │ │ ├── go.vim │ │ ├── haskell.vim │ │ ├── html.vim │ │ ├── javascript.vim │ │ ├── perl.vim │ │ ├── ruby.vim │ │ ├── scala.vim │ │ ├── sh.vim │ │ ├── tt2html.vim │ │ ├── typescript.vim │ │ └── vim.vim │ └── syntax │ │ └── sh.vim ├── bin │ └── prove-wrapper ├── colors │ ├── freya.vim │ ├── github.vim │ ├── liquidcarbon.vim │ ├── navajo-night.vim │ ├── railscasts.vim │ ├── shandy.vim │ ├── tiro_finale.vim │ ├── wombat256mod.vim │ ├── xoria256.vim │ └── zenesque.vim ├── etc │ ├── lazy.toml │ ├── operator.toml │ └── plugins.toml ├── filetype.vim ├── gvimrc ├── plugin │ └── memolist-templates │ │ └── hatena.txt ├── rc │ ├── 00_autocmd.vim │ ├── 00_base.vim │ ├── 10_dein.vim │ ├── 20_command.vim │ ├── 20_key.vim │ ├── 20_tab.vim │ ├── command_line_window.vim │ └── plugins │ │ ├── denite.added.vim │ │ ├── denite.sourced.vim │ │ ├── lightline.vim │ │ ├── neocomplete.vim │ │ ├── quickrun.vim │ │ ├── syntastic.added.vim │ │ ├── unite.added.vim │ │ └── watchdogs.vim ├── snippets │ ├── eruby.snip │ ├── io.snip │ ├── javascript.snippet │ ├── markdown.snippet │ ├── objc.snip │ ├── perl.snip │ ├── rspec.snip │ ├── ruby.snip │ ├── tap.snip │ ├── textile.snip │ ├── tt2.snip │ ├── tt2html.snip │ ├── vim.snip │ └── zsh.snip ├── swp │ └── .gitkeep ├── tools │ └── efm_perl.pl ├── undo │ └── .gitkeep └── vimrc ├── .vimperator └── colors │ └── solarized_light.vimp ├── .vimperatorrc ├── .vimperatorrc.js ├── .zsh.d └── functions │ ├── _carton │ ├── _padrino │ ├── _pkgutil │ ├── _prove │ ├── _proxychains4 │ ├── _rails │ ├── _tsocks │ ├── git_info │ ├── gyapbox │ ├── llenv_version_origin │ ├── prompt_aereal_setup │ ├── prompt_aereal_unicode_setup │ ├── prompt_lambda_setup │ └── prompt_yuno_setup ├── .zshenv ├── .zshrc ├── Brewfile ├── README.md ├── Rakefile ├── bin ├── abbrev-cwd.go ├── diff-highlight-wrapper ├── generate-typable-words ├── git-authors.go ├── git-catchup ├── git-check-dirty ├── git-git ├── git-issue-checkout ├── git-normalize-url ├── git-recent-branches ├── git-refresh-branch ├── git-run ├── git-topic-rebase ├── git-up ├── macvim ├── man ├── metacpan ├── mkproj ├── os-version ├── paginate ├── pm-version ├── screenshot2slack ├── ts-project └── vim ├── colors └── Japanesque │ ├── Japanesque.itermcolors │ └── README.markdown ├── osx ├── defaults │ ├── alfred.bash │ └── config.bash └── keyremap4macbook │ ├── config.sh │ └── private.xml └── test ├── Gemfile └── dotfiles_test.rb /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.bundle/config -------------------------------------------------------------------------------- /.caprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.caprc -------------------------------------------------------------------------------- /.colordiffrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.colordiffrc -------------------------------------------------------------------------------- /.config/ghostty/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.config/ghostty/config -------------------------------------------------------------------------------- /.config/nvim/after: -------------------------------------------------------------------------------- 1 | /Users/aereal/devel/src/github.com/aereal/dotfiles/.vim/after -------------------------------------------------------------------------------- /.config/nvim/colors: -------------------------------------------------------------------------------- 1 | /Users/aereal/devel/src/github.com/aereal/dotfiles/.vim/colors -------------------------------------------------------------------------------- /.config/nvim/etc: -------------------------------------------------------------------------------- 1 | /Users/aereal/devel/src/github.com/aereal/dotfiles/.vim/etc -------------------------------------------------------------------------------- /.config/nvim/filetype.vim: -------------------------------------------------------------------------------- 1 | /Users/aereal/devel/src/github.com/aereal/dotfiles/.vim/filetype.vim -------------------------------------------------------------------------------- /.config/nvim/ginit.vim: -------------------------------------------------------------------------------- 1 | /Users/aereal/devel/src/github.com/aereal/dotfiles/.vim/gvimrc -------------------------------------------------------------------------------- /.config/nvim/init.vim: -------------------------------------------------------------------------------- 1 | /Users/aereal/devel/src/github.com/aereal/dotfiles/.vim/vimrc -------------------------------------------------------------------------------- /.config/nvim/rc: -------------------------------------------------------------------------------- 1 | /Users/aereal/devel/src/github.com/aereal/dotfiles/.vim/rc -------------------------------------------------------------------------------- /.config/nvim/snippets: -------------------------------------------------------------------------------- 1 | /Users/aereal/devel/src/github.com/aereal/dotfiles/.vim/snippets -------------------------------------------------------------------------------- /.dotfiles.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.dotfiles.ignore -------------------------------------------------------------------------------- /.gemrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.gemrc -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.gitconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.gitmodules -------------------------------------------------------------------------------- /.global.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.global.gitignore -------------------------------------------------------------------------------- /.hammerspoon/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.hammerspoon/init.lua -------------------------------------------------------------------------------- /.my.cnf: -------------------------------------------------------------------------------- 1 | [mysql] 2 | prompt="\u@\h[\d]> " 3 | auto-rehash 4 | -------------------------------------------------------------------------------- /.peco/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.peco/config.json -------------------------------------------------------------------------------- /.powenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.powenv -------------------------------------------------------------------------------- /.proverc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.proverc -------------------------------------------------------------------------------- /.pryrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.pryrc -------------------------------------------------------------------------------- /.screenrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.screenrc -------------------------------------------------------------------------------- /.slate.d/google_chrome.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | open -a "Google Chrome" 4 | -------------------------------------------------------------------------------- /.slate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.slate.js -------------------------------------------------------------------------------- /.tigrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.tigrc -------------------------------------------------------------------------------- /.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.tmux.conf -------------------------------------------------------------------------------- /.tmux.d/scripts/macbook-battery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.tmux.d/scripts/macbook-battery -------------------------------------------------------------------------------- /.tmux.d/scripts/today: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.tmux.d/scripts/today -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.travis.yml -------------------------------------------------------------------------------- /.uim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.uim -------------------------------------------------------------------------------- /.vim/.eskk/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vim/.neocon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vim/.unite/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vim/after/ftplugin/go.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/after/ftplugin/go.vim -------------------------------------------------------------------------------- /.vim/after/ftplugin/haskell.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/after/ftplugin/haskell.vim -------------------------------------------------------------------------------- /.vim/after/ftplugin/html.vim: -------------------------------------------------------------------------------- 1 | inoremap = = 2 | -------------------------------------------------------------------------------- /.vim/after/ftplugin/javascript.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/after/ftplugin/javascript.vim -------------------------------------------------------------------------------- /.vim/after/ftplugin/perl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/after/ftplugin/perl.vim -------------------------------------------------------------------------------- /.vim/after/ftplugin/ruby.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/after/ftplugin/ruby.vim -------------------------------------------------------------------------------- /.vim/after/ftplugin/scala.vim: -------------------------------------------------------------------------------- 1 | inoremap ,t :EnType 2 | -------------------------------------------------------------------------------- /.vim/after/ftplugin/sh.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/after/ftplugin/sh.vim -------------------------------------------------------------------------------- /.vim/after/ftplugin/tt2html.vim: -------------------------------------------------------------------------------- 1 | autocmd MyInit FileType tt2html inoremap = = 2 | -------------------------------------------------------------------------------- /.vim/after/ftplugin/typescript.vim: -------------------------------------------------------------------------------- 1 | inoremap \ smartchr#one_of(' => ', '\') 2 | -------------------------------------------------------------------------------- /.vim/after/ftplugin/vim.vim: -------------------------------------------------------------------------------- 1 | inoremap = = 2 | -------------------------------------------------------------------------------- /.vim/after/syntax/sh.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/after/syntax/sh.vim -------------------------------------------------------------------------------- /.vim/bin/prove-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/bin/prove-wrapper -------------------------------------------------------------------------------- /.vim/colors/freya.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/colors/freya.vim -------------------------------------------------------------------------------- /.vim/colors/github.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/colors/github.vim -------------------------------------------------------------------------------- /.vim/colors/liquidcarbon.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/colors/liquidcarbon.vim -------------------------------------------------------------------------------- /.vim/colors/navajo-night.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/colors/navajo-night.vim -------------------------------------------------------------------------------- /.vim/colors/railscasts.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/colors/railscasts.vim -------------------------------------------------------------------------------- /.vim/colors/shandy.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/colors/shandy.vim -------------------------------------------------------------------------------- /.vim/colors/tiro_finale.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/colors/tiro_finale.vim -------------------------------------------------------------------------------- /.vim/colors/wombat256mod.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/colors/wombat256mod.vim -------------------------------------------------------------------------------- /.vim/colors/xoria256.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/colors/xoria256.vim -------------------------------------------------------------------------------- /.vim/colors/zenesque.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/colors/zenesque.vim -------------------------------------------------------------------------------- /.vim/etc/lazy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/etc/lazy.toml -------------------------------------------------------------------------------- /.vim/etc/operator.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/etc/operator.toml -------------------------------------------------------------------------------- /.vim/etc/plugins.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/etc/plugins.toml -------------------------------------------------------------------------------- /.vim/filetype.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/filetype.vim -------------------------------------------------------------------------------- /.vim/gvimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/gvimrc -------------------------------------------------------------------------------- /.vim/plugin/memolist-templates/hatena.txt: -------------------------------------------------------------------------------- 1 | * {{_title_}} 2 | 3 | -------------------------------------------------------------------------------- /.vim/rc/00_autocmd.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/rc/00_autocmd.vim -------------------------------------------------------------------------------- /.vim/rc/00_base.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/rc/00_base.vim -------------------------------------------------------------------------------- /.vim/rc/10_dein.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/rc/10_dein.vim -------------------------------------------------------------------------------- /.vim/rc/20_command.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/rc/20_command.vim -------------------------------------------------------------------------------- /.vim/rc/20_key.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/rc/20_key.vim -------------------------------------------------------------------------------- /.vim/rc/20_tab.vim: -------------------------------------------------------------------------------- 1 | set showtabline=2 2 | -------------------------------------------------------------------------------- /.vim/rc/command_line_window.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/rc/command_line_window.vim -------------------------------------------------------------------------------- /.vim/rc/plugins/denite.added.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/rc/plugins/denite.added.vim -------------------------------------------------------------------------------- /.vim/rc/plugins/denite.sourced.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/rc/plugins/denite.sourced.vim -------------------------------------------------------------------------------- /.vim/rc/plugins/lightline.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/rc/plugins/lightline.vim -------------------------------------------------------------------------------- /.vim/rc/plugins/neocomplete.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/rc/plugins/neocomplete.vim -------------------------------------------------------------------------------- /.vim/rc/plugins/quickrun.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/rc/plugins/quickrun.vim -------------------------------------------------------------------------------- /.vim/rc/plugins/syntastic.added.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/rc/plugins/syntastic.added.vim -------------------------------------------------------------------------------- /.vim/rc/plugins/unite.added.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/rc/plugins/unite.added.vim -------------------------------------------------------------------------------- /.vim/rc/plugins/watchdogs.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/rc/plugins/watchdogs.vim -------------------------------------------------------------------------------- /.vim/snippets/eruby.snip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/snippets/eruby.snip -------------------------------------------------------------------------------- /.vim/snippets/io.snip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/snippets/io.snip -------------------------------------------------------------------------------- /.vim/snippets/javascript.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/snippets/javascript.snippet -------------------------------------------------------------------------------- /.vim/snippets/markdown.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/snippets/markdown.snippet -------------------------------------------------------------------------------- /.vim/snippets/objc.snip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/snippets/objc.snip -------------------------------------------------------------------------------- /.vim/snippets/perl.snip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/snippets/perl.snip -------------------------------------------------------------------------------- /.vim/snippets/rspec.snip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/snippets/rspec.snip -------------------------------------------------------------------------------- /.vim/snippets/ruby.snip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/snippets/ruby.snip -------------------------------------------------------------------------------- /.vim/snippets/tap.snip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/snippets/tap.snip -------------------------------------------------------------------------------- /.vim/snippets/textile.snip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/snippets/textile.snip -------------------------------------------------------------------------------- /.vim/snippets/tt2.snip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/snippets/tt2.snip -------------------------------------------------------------------------------- /.vim/snippets/tt2html.snip: -------------------------------------------------------------------------------- 1 | include tt2.snip 2 | -------------------------------------------------------------------------------- /.vim/snippets/vim.snip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/snippets/vim.snip -------------------------------------------------------------------------------- /.vim/snippets/zsh.snip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/snippets/zsh.snip -------------------------------------------------------------------------------- /.vim/swp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vim/tools/efm_perl.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/tools/efm_perl.pl -------------------------------------------------------------------------------- /.vim/undo/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vim/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vim/vimrc -------------------------------------------------------------------------------- /.vimperator/colors/solarized_light.vimp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vimperator/colors/solarized_light.vimp -------------------------------------------------------------------------------- /.vimperatorrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vimperatorrc -------------------------------------------------------------------------------- /.vimperatorrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.vimperatorrc.js -------------------------------------------------------------------------------- /.zsh.d/functions/_carton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.zsh.d/functions/_carton -------------------------------------------------------------------------------- /.zsh.d/functions/_padrino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.zsh.d/functions/_padrino -------------------------------------------------------------------------------- /.zsh.d/functions/_pkgutil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.zsh.d/functions/_pkgutil -------------------------------------------------------------------------------- /.zsh.d/functions/_prove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.zsh.d/functions/_prove -------------------------------------------------------------------------------- /.zsh.d/functions/_proxychains4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.zsh.d/functions/_proxychains4 -------------------------------------------------------------------------------- /.zsh.d/functions/_rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.zsh.d/functions/_rails -------------------------------------------------------------------------------- /.zsh.d/functions/_tsocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.zsh.d/functions/_tsocks -------------------------------------------------------------------------------- /.zsh.d/functions/git_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.zsh.d/functions/git_info -------------------------------------------------------------------------------- /.zsh.d/functions/gyapbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.zsh.d/functions/gyapbox -------------------------------------------------------------------------------- /.zsh.d/functions/llenv_version_origin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.zsh.d/functions/llenv_version_origin -------------------------------------------------------------------------------- /.zsh.d/functions/prompt_aereal_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.zsh.d/functions/prompt_aereal_setup -------------------------------------------------------------------------------- /.zsh.d/functions/prompt_aereal_unicode_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.zsh.d/functions/prompt_aereal_unicode_setup -------------------------------------------------------------------------------- /.zsh.d/functions/prompt_lambda_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.zsh.d/functions/prompt_lambda_setup -------------------------------------------------------------------------------- /.zsh.d/functions/prompt_yuno_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.zsh.d/functions/prompt_yuno_setup -------------------------------------------------------------------------------- /.zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.zshenv -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/.zshrc -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/Brewfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/abbrev-cwd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/bin/abbrev-cwd.go -------------------------------------------------------------------------------- /bin/diff-highlight-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/bin/diff-highlight-wrapper -------------------------------------------------------------------------------- /bin/generate-typable-words: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/bin/generate-typable-words -------------------------------------------------------------------------------- /bin/git-authors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/bin/git-authors.go -------------------------------------------------------------------------------- /bin/git-catchup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/bin/git-catchup -------------------------------------------------------------------------------- /bin/git-check-dirty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/bin/git-check-dirty -------------------------------------------------------------------------------- /bin/git-git: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec git $@ 4 | -------------------------------------------------------------------------------- /bin/git-issue-checkout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/bin/git-issue-checkout -------------------------------------------------------------------------------- /bin/git-normalize-url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/bin/git-normalize-url -------------------------------------------------------------------------------- /bin/git-recent-branches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/bin/git-recent-branches -------------------------------------------------------------------------------- /bin/git-refresh-branch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/bin/git-refresh-branch -------------------------------------------------------------------------------- /bin/git-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/bin/git-run -------------------------------------------------------------------------------- /bin/git-topic-rebase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/bin/git-topic-rebase -------------------------------------------------------------------------------- /bin/git-up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/bin/git-up -------------------------------------------------------------------------------- /bin/macvim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/bin/macvim -------------------------------------------------------------------------------- /bin/man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/bin/man -------------------------------------------------------------------------------- /bin/metacpan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/bin/metacpan -------------------------------------------------------------------------------- /bin/mkproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/bin/mkproj -------------------------------------------------------------------------------- /bin/os-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/bin/os-version -------------------------------------------------------------------------------- /bin/paginate: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ${PAGER-less} 4 | -------------------------------------------------------------------------------- /bin/pm-version: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | perl -M"$1" -e "print qq|\$$1::VERSION\n|" 4 | -------------------------------------------------------------------------------- /bin/screenshot2slack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/bin/screenshot2slack -------------------------------------------------------------------------------- /bin/ts-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/bin/ts-project -------------------------------------------------------------------------------- /bin/vim: -------------------------------------------------------------------------------- 1 | /Users/aereal/repos/github.com/aereal/dotfiles/bin/macvim -------------------------------------------------------------------------------- /colors/Japanesque/Japanesque.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/colors/Japanesque/Japanesque.itermcolors -------------------------------------------------------------------------------- /colors/Japanesque/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/colors/Japanesque/README.markdown -------------------------------------------------------------------------------- /osx/defaults/alfred.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/osx/defaults/alfred.bash -------------------------------------------------------------------------------- /osx/defaults/config.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/osx/defaults/config.bash -------------------------------------------------------------------------------- /osx/keyremap4macbook/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/osx/keyremap4macbook/config.sh -------------------------------------------------------------------------------- /osx/keyremap4macbook/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/osx/keyremap4macbook/private.xml -------------------------------------------------------------------------------- /test/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/test/Gemfile -------------------------------------------------------------------------------- /test/dotfiles_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/dotfiles/HEAD/test/dotfiles_test.rb --------------------------------------------------------------------------------