This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| USAGE="usage: git delete-merged-branches | |
| [(-r|--remote) <remote-name>] | |
| [(-b|--branch) <merge-base>] | |
| [(-s|--older-than) <date>] | |
| [--local-only] [--yes] [-n|--dry-run]" | |
| for (( i = 1; i < $(($#+1)); ++i )); do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| user.name=Kikuchi Motoki | |
| user.email=wildflower.pink0102@gmail.com | |
| rebase.autosquash=true | |
| diff.context=7 | |
| alias.branch-short=for-each-ref --format='%(refname:short)' refs/heads | |
| alias.diffc=diff --cached | |
| alias.fetchp=fetch --prune | |
| alias.graph=log --graph --pretty="%Cred%h%Creset - %Creset%C(yellow)%cN%Creset %Cgreen%d%Creset %s %C(cyan)(%ai - %ar)%Creset" --date=relative --date-order | |
| alias.graphs=graph --remotes HEAD | |
| alias.root=rev-parse --show-toplevel |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| bootRun { | |
| jvmArgs=["-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005"] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set -g prefix C-x | |
| # set -g prefix2 C-b | |
| set -g history-limit 7000 | |
| set -g mouse on | |
| bind l select-pane -R | |
| bind h select-pane -L | |
| bind j select-pane -D |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "using vim-plug | |
| call plug#begin('~/.vim/plugged') | |
| Plug 'scrooloose/nerdtree' | |
| "Plug 'editorconfig/editorconfig-vim' | |
| "Plug 'embear/vim-localvimrc' | |
| Plug 'udalov/kotlin-vim' | |
| Plug 'Vimjas/vim-python-pep8-indent' | |
| Plug 'tpope/vim-fugitive' | |
| "Plug 'pangloss/vim-javascript' | |
| "Plug 'leafgarland/typescript-vim' |