Changeset 9161 for dotfiles/vim

Show
Ignore:
Timestamp:
04/09/08 10:44:31 (5 years ago)
Author:
cho45
Message:

dotfiles/vim/cho45/.vimrc:

IM がいちいち切れるのでオフに

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • dotfiles/vim/cho45/.vimrc

    r7845 r9161  
    9999 
    100100set viminfo+=! 
     101 
     102set nowrap 
     103set sidescroll=5 
     104set listchars+=precedes:<,extends:> 
    101105 
    102106filetype plugin on 
     
    203207        autocmd FileType yaml set expandtab ts=2 sw=2 enc=utf-8 fenc=utf-8 
    204208 
     209        autocmd BufEnter * set nowrap 
     210 
     211 
    205212        " auto cd 
    206213        " autocmd BufEnter * exe ":lcd \"" . expand("%:p:h") . "\"" 
     
    300307let g:AutoComplPop_CompleteOption = '.,w,b,k' 
    301308 
    302 au BufNewFile,BufRead *.io setf io 
    303  
     309autocmd BufNewFile,BufRead *.io set filetype=io 
     310autocmd BufNewFile,BufRead COMMIT_EDITMSG set filetype=git | AutoComplPopDisable 
     311