ImageMagick6.2.9から使える関数が必要なため。
rpm -qa | grep -i imagemagick
ImageMagick-6.2.8.0-4.el5_5.3
ImageMagick-devel-6.2.8.0-4.el5_5.3
" yanktmp.vim {{{ | |
map <silent> ty :call YanktmpYank()<CR> | |
map <silent> tp :call YanktmpPaste_p()<CR> | |
map <silent> tP :call YanktmpPaste_P()<CR> | |
let g:yanktmp_file = '/tmp/vimyanktmp' | |
" }}} |
function! s:search_line(path, term) | |
let line = match(readfile(a:path), '\%(const\|static\|function\)!\?\s*' . a:term) | |
if line >= 0 | |
return line+1 | |
endif | |
return 0 | |
endfunction |
" precious " {{{ | |
let g:precious_enable_switchers = { | |
\ "*" : { | |
\ "setfiletype" : 0 | |
\ }, | |
\ "markdown" : { | |
\ "setfiletype" : 1 | |
\ }, | |
\} | |
" }}} |
まずはxcodeをインストール
xcodebuild -licence
agree
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
brew doctor
brew install libevent
" neocomplcache.vim {{{ | |
" パラメータ設定 {{{ | |
" Disable AutoComplPop. | |
let g:acp_enableAtStartup = 0 | |
" Use neocomplcache. | |
let g:neocomplcache_enable_at_startup = 1 | |
" 入力に大文字が入力されていたら、大文字小文字の区別をする | |
let g:neocomplcache_enable_smart_case = 0 | |
" 大文字小文字区切りの曖昧検索をするかどうか。DT = D*T* -> DateTime |
# node.jsとternのインストール | |
```sh | |
yum install gcc gcc-c++ kernel-devel libssl-devel | |
cd /usr/local/src | |
wget http://nodejs.org/dist/v0.10.15/node-v0.10.15.tar.gz | |
cd /usr/local/src/node-v0.10.15 | |
# 要python2.6 or 2.7 |
https://github.com/CakeDC/migrations