MinGW+minTTY, MinGWのメンテと、Vundle

msys2を入れたんだけど、MinGWがまだ生きているので、ちょい修正。

$HOMEWindows環境変数から抜いたら、msys2と同じような構成となった。 つうか、こちらがもともとのデフォルトっぽい。

/c/MinGW/msys/1.0/home/username/

が下記にリンク。

>echo $HOME
/home/username

ちゅうことで、過去の$HOME=/c/Users/usernameのころの.xxxxrcファイル群を移動。

ついてでにVundleを入れる。

git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle

.vimrcを書き書き。

 45 " Vundle
 46 "----------------------------------------------
 47 filetype off
 48 set rtp+=/c/MinGW/msys/1.0/home/usename/.vim/bundle/vundle/
 49 "set rtp+=~/.vim/bundle/vundle/
 50 call vundle#rc()
 51 Bundle 'gmarik/vundle'
 52 Bundle 'nathanaelkane/vim-indent-guides'
 53 Bundle 'davidhalter/jedi-vim'
 54 "Bundle 'rkulla/pydiction'
 55 filetype plugin indent on
 56
 57 " Python
 58 "----------------------------------------------
 59 filetype plugin on
 60 autocmd FileType python setl autoindent
 61 autocmd FileType python setl smartindent cinwords=if,elif,else,for,while,try,except,finally,def,class
 62 autocmd FileType python setl expandtab tabstop=4 shiftwidth=4 softtabstop=4
 63 "autocmd FileType python let g:pydiction_location = '/home/username/.vim/bundle/pydiction/complete-dict'
 64
 65 " vim-indent-guides
 66 " ----------------------------------------------
 67 let g:indent_guides_enable_on_vim_startup=1
 68 let g:indent_guides_start_leve =2
 69 let g:indent_guides_guide_size = 1
 70
 71 " Jedi
 72 " ----------------------------------------------
 73 "let g:jedi#popup_on_dot=0

JediPython 無のVimなので動かず、、、

こちらでも~が効かない、、、何がおかしいのかな、、、