msysGitをインストール後、 「スタート」>「Git」>「Git Bash」を実行して Git Bash を立ち上げ、 以下のコマンドを実行することで、さまざまな作業を行えます
This file contains 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
" Vim syntax file | |
" Language: Verbose TAP Output | |
" Maintainer: Rufus Cable <[email protected]> | |
" Remark: Simple syntax highlighting for TAP output | |
" License: | |
" Copyright (c) 2008 Rufus Cable | |
if exists("b:current_syntax") | |
finish | |
endif |
This file contains 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
require 'formula' | |
class Migemo < Formula | |
url 'http://0xcc.net/migemo/migemo-0.40.tar.gz' | |
homepage 'http://0xcc.net/migemo/' | |
md5 '7021c45096b6816fccf16f8389324a91' | |
depends_on 'emacs' | |
depends_on 'ruby-bsearch' | |
depends_on 'ruby-romkan' |
This file contains 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
# download latest libevent2 and tmux sources, and extract them somewhere | |
# (thx bluejedi for tip on latest tmux URL) | |
# | |
# at the time of writing: | |
# https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz | |
# http://sourceforge.net/projects/tmux/files/latest/download?source=files | |
# | |
# install deps | |
yum install gcc kernel-devel make ncurses-devel |
This file contains 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
## completion for gem transition of rbenv | |
function gem-transition { | |
local tmpfile=/tmp/current_gem_list | |
if [ $# -ne 2 ]; then | |
echo "usage: command version1 version2" | |
return | |
fi | |
rbenv install $2 | |
rbenv global $1 | |
rbenv rehash |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Ansi 0 Color</key> | |
<dict> | |
<key>Blue Component</key> | |
<real>0.20179691910743713</real> | |
<key>Green Component</key> | |
<real>0.1818026602268219</real> |
OlderNewer