デフォルトのbrew caskからインストールできるのはSublime Text2のみなのでversionsを追加する。
brew tap caskroom/homebrew-versions
brew cask install sublime-text3
| import UIKit | |
| class TimerViewController: UIViewController { | |
| @IBOutlet weak var counetrLabel: UILabel! | |
| var counter: Float = 0.0 | |
| var stepCounter: Int = 0 | |
| var timer: NSTimer? | |
| override func viewDidLoad() { |
| // | |
| // SIFlatButton.swift | |
| // TwitterClone | |
| // | |
| // Created by Shoya Ishimaru on 2015/05/08. | |
| // Copyright (c) 2015年 shoya140. All rights reserved. | |
| // | |
| import UIKit |
| # color | |
| alias ls="gls --color" | |
| eval $(gdircolors ~/dotfiles/dircolors-solarized/dircolors.256dark) | |
| if [ -n "$LS_COLORS" ]; then | |
| zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS} | |
| fi |
| <?xml version="1.0"?> | |
| <root> | |
| <item> | |
| <name>Vi Mode extra</name> | |
| <list> | |
| <item> | |
| <name>LeaveInsMode with EISUU(Terminal)</name> | |
| <identifier>private.app_terminal_esc_with_eisuu</identifier> | |
| <only>TERMINAL</only> | |
| <autogen>--KeyToKey-- KeyCode::ESCAPE, KeyCode::ESCAPE, KeyCode::JIS_EISUU</autogen> |
| VBoxManage controlvm 'boot2docker-vm' natpf1 'docker,tcp,127.0.0.1,80,,80' |
| { | |
| "shell": false, | |
| "cmd":[ | |
| "/bin/sh", "-c", "/usr/texbin/platex $file_base_name.tex && /usr/texbin/pbibtex $file_base_name.aux && /usr/texbin/platex $file_base_name.tex && /usr/texbin/dvipdfmx -p a4 $file_base_name.dvi && /usr/bin/open $file_base_name.pdf" | |
| ], | |
| "selector": "source.tex" | |
| } |
| // | |
| // ViewController.m | |
| // Twitter-Practice | |
| // | |
| // Created by ishimaru on 2014/11/09. | |
| // Copyright (c) 2014 shoya140. All rights reserved. | |
| // | |
| #import "ViewController.h" | |
| #import "STTwitter.h" |
| sed -e 's/‾/~/g' ieicej.cls > ieicej.cls.out |
| for c in `brew cask list`; do ! brew cask info $c | grep -qF "Not installed" || brew cask install $c; done |