Changeset 15061 for dotfiles

Show
Ignore:
Timestamp:
07/03/08 00:54:12 (5 months ago)
Author:
cho45
Message:

いろいろ修正したのをアップデート

Location:
dotfiles
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • dotfiles/git/cho45-gitconfig

    r11661 r15061  
    77        di      = diff 
    88        co      = checkout 
    9         ci      = commit 
     9        ci      = commit -v 
    1010        br      = branch 
    1111        srd     = svn rebase 
     12        svd     = svn dcommit 
    1213        lc      = log ORIG_HEAD.. --stat --no-merges 
    1314        hub-url = !ruby -e 'puts (%Q{http://github.com/%s/%s/tree/master/} + %x{git rev-parse --show-prefix}) % %x{git config -l}.match(%r{^remote.origin.url=git@github.com:([^/]+)/([^.]+).git}).captures' 
  • dotfiles/rubygems/cho45-gemrc

    r4524 r15061  
     1---  
     2:benchmark: false 
     3:update_sources: true 
     4:verbose: true 
     5:sources:  
     6- http://gems.rubyforge.org 
     7:backtrace: false 
    18rdoc: --template ~/coderepos/lang/ruby/rdoc/generators/template/html/resh/resh.rb --inline-source 
    2  
     9:bulk_threshold: 1000 
  • dotfiles/vim/cho45/.vimrc

    r9161 r15061  
    108108 
    109109" mapping 
     110 
     111inoremap  <BS> 
    110112 
    111113nnoremap j gj 
     
    187189      \   ], 
    188190      \ } 
    189 let g:FuzzyFinderOptions.MruFile.max_item = 400 
     191let g:FuzzyFinderOptions.MruFile.max_item = 1000 
    190192 
    191193nmap bg :FuzzyFinderBuffer<CR> 
     
    302304"inoremap [ [<ESC>a 
    303305 
     306set nofoldenable 
    304307set lazyredraw 
    305308inoremap <expr> <CR> pumvisible() ? "\<C-Y>\<CR>" : "\<CR>" 
     
    310313autocmd BufNewFile,BufRead COMMIT_EDITMSG set filetype=git | AutoComplPopDisable 
    311314 
     315nnoremap <C-h>  :<C-u>help<Space> 
     316nnoremap <C-c>  :<C-u>close<CR> 
     317 
  • dotfiles/zsh/cho45/.zsh/mine.zshrc

    r14930 r15061  
    1313PROMPT_CWD=" %{%}%~%{%}" 
    1414PROMPT_L=" 
    15 %{%}>_<X <%{%}%{%} " 
     15%{%} / _ / X <%{%}%{%} " 
    1616 
    1717PROMPT="$PROMPT_EXIT$PROMPT_CWD$PROMPT_L" 
     
    106106fi 
    107107 
     108# window num -> tty の対応ができるように 
     109tty > /tmp/screen-tty-$WINDOW 
     110 
  • dotfiles/zsh/cho45/.zshrc

    r14957 r15061  
    131131 
    132132alias :q=exit 
    133 alias reload='exec zsh' 
    134133 
    135134autoload -U edit-command-line 
     
    197196bindkey "^x " no-magic-abbrev-expand 
    198197bindkey "^I"  magic-abbrev-expand-and-normal-complete 
     198 
     199# vim とかが露頭に迷わないように 
     200function reload () { 
     201        local j 
     202        jobs > /tmp/$$-jobs 
     203        j=$(</tmp/$$-jobs) 
     204        if [ "$j" = "" ]; then 
     205                exec zsh 
     206        else 
     207                fg 
     208        fi 
     209} 
    199210 
    200211# http://subtech.g.hatena.ne.jp/secondlife/20080604/1212562182 
     
    214225        done 
    215226} 
    216  
    217227function cdrake () { 
    218228        cdf "Rakefile"