gitextract_iqt6khwm/ ├── .bundle/ │ └── config ├── .caprc ├── .colordiffrc ├── .config/ │ └── ghostty/ │ └── config ├── .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 │ ├── 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 │ ├── tools/ │ │ └── efm_perl.pl │ └── 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 ├── colors/ │ └── Japanesque/ │ ├── Japanesque.itermcolors │ └── README.markdown ├── osx/ │ ├── defaults/ │ │ ├── alfred.bash │ │ └── config.bash │ └── keyremap4macbook/ │ ├── config.sh │ └── private.xml └── test/ ├── Gemfile └── dotfiles_test.rb