Skip to content

Instantly share code, notes, and snippets.

View riscait's full-sized avatar

MURAMATSU Ryunosuke riscait

View GitHub Profile
@riscait
riscait / .Brewfile
Last active April 17, 2021 20:49
HomeBrewで管理したいアプリのリストファイル。ホームディレクトリに置いた場合は `brew bundle --global`
# https://github.com/Homebrew/homebrew-bundle
tap "homebrew/bundle"
tap "homebrew/cask"
tap "homebrew/core"
cask_args appdir: "/Applications"
# ----------------------------------------
# brew
# ----------------------------------------
@riscait
riscait / Mintfile
Created February 21, 2020 20:17
Swift製CLIのパッケージマネージャーMintで使用する、パッケージのリストファイル
Carthage/Carthage@0.34.0
realm/SwiftLint@0.39.1
yonaskolb/xcodegen@2.13.1
@riscait
riscait / .bashrc
Last active July 7, 2019 11:05
ホームディレクトリ用のMy .bashrc
# .bashrcを編集する
alias vibash='vi ~/.bashrc'
# .bashrcを更新する
alias rebash='source ~/.bashrc'
# Git
alias gst='git status'
alias gdf='git diff --staged'
alias gcm='git commit -m'
alias gcma='git commit --amend'