raa0121 12 年 前
コミット
5820ae3614
共有2 個のファイルを変更した4 個の追加10 個の削除を含む
  1. 0 9
      .bashrc
  2. 4 1
      .vimrc

+ 0 - 9
.bashrc

@@ -37,12 +37,3 @@ elif [ $HOSTNAME = "ryo" ] || [ $HOSTNAME = "nakako" ]; then
   export LANG=ja_JP.UTF-8
   export PATH=$WIN_PATH
 fi
-
-_vim=`which vim`
-vim(){
-    if [ $1 ] ; then
-        $_vim $1
-    else
-        $_vim ~/.vimrc
-    fi
-}

+ 4 - 1
.vimrc

@@ -132,8 +132,9 @@ NeoBundleLazy 'eagletmt/ghcmod-vim', {'autoload' : {'filetypes' : ['hs']}}
 NeoBundleLazy 'git://vim-latex.git.sourceforge.net/gitroot/vim-latex/vim-latex', {
   \ 'autoload' : {'filetypes' : ['tex', 'sty']}}
 
-NeoBundle 'modsound/gips-vim'
 NeoBundle 'thinca/vim-singleton'
+NeoBundle 'mattn/benchvimrc-vim'
+NeoBundle 'ryutorion/vim-itunes'
 
 filetype plugin indent on
 if has('clientserver')
@@ -171,6 +172,8 @@ let g:neocomplcache_enable_underbar_completion = 1
 " " Sets minimum char length of syntax keyword.
 let g:neocomplcache_min_syntax_length = 3
 
+let g:vimfiler_as_default_explorer = 1
+
 "tabで補完候補の選択を行う
 inoremap <expr><TAB> pumvisible() ? "\<Down>" : "\<TAB>"
 inoremap <expr><S-TAB> pumvisible() ? "\<Up>" : "\<S-TAB>"