Browse Source

Merge e7c981857f into 88688fe453

pull/782/merge
souparno majumder 9 years ago
committed by GitHub
parent
commit
ceecaed521
18 changed files with 57 additions and 0 deletions
  1. +0
    -0
      Vundle.vim/CONTRIBUTING.md
  2. +0
    -0
      Vundle.vim/LICENSE-MIT.txt
  3. +0
    -0
      Vundle.vim/README.md
  4. +0
    -0
      Vundle.vim/README_ZH_CN.md
  5. +0
    -0
      Vundle.vim/README_ZH_TW.md
  6. +0
    -0
      Vundle.vim/autoload/vundle.vim
  7. +0
    -0
      Vundle.vim/autoload/vundle/config.vim
  8. +0
    -0
      Vundle.vim/autoload/vundle/installer.vim
  9. +0
    -0
      Vundle.vim/autoload/vundle/scripts.vim
  10. +0
    -0
      Vundle.vim/changelog.md
  11. +0
    -0
      Vundle.vim/doc/vundle.txt
  12. +0
    -0
      Vundle.vim/ftplugin/vundlelog.vim
  13. +0
    -0
      Vundle.vim/syntax/vundlelog.vim
  14. +0
    -0
      Vundle.vim/test/files/test.erl
  15. +0
    -0
      Vundle.vim/test/minirc.vim
  16. +0
    -0
      Vundle.vim/test/vimrc
  17. +16
    -0
      install
  18. +41
    -0
      vimrc

CONTRIBUTING.md → Vundle.vim/CONTRIBUTING.md View File


LICENSE-MIT.txt → Vundle.vim/LICENSE-MIT.txt View File


README.md → Vundle.vim/README.md View File


README_ZH_CN.md → Vundle.vim/README_ZH_CN.md View File


README_ZH_TW.md → Vundle.vim/README_ZH_TW.md View File


autoload/vundle.vim → Vundle.vim/autoload/vundle.vim View File


autoload/vundle/config.vim → Vundle.vim/autoload/vundle/config.vim View File


autoload/vundle/installer.vim → Vundle.vim/autoload/vundle/installer.vim View File


autoload/vundle/scripts.vim → Vundle.vim/autoload/vundle/scripts.vim View File


changelog.md → Vundle.vim/changelog.md View File


doc/vundle.txt → Vundle.vim/doc/vundle.txt View File


ftplugin/vundlelog.vim → Vundle.vim/ftplugin/vundlelog.vim View File


syntax/vundlelog.vim → Vundle.vim/syntax/vundlelog.vim View File


test/files/test.erl → Vundle.vim/test/files/test.erl View File


test/minirc.vim → Vundle.vim/test/minirc.vim View File


test/vimrc → Vundle.vim/test/vimrc View File


+ 16
- 0
install View File

@ -0,0 +1,16 @@
install () {
if [ ! -f ~/.vim ]; then
mkdir ~/.vim
mkdir ~/.vim/bundle
cp -r ./Vundle.vim ~/.vim/bundle
fi
if [ ! -f ~/.vimrc ]; then
cp ./vimrc ~/.vimrc
fi
}
install
source .vimrc
vim +PluginClean! +PluginInstall +PluginUpdate +qall

+ 41
- 0
vimrc View File

@ -0,0 +1,41 @@
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'lrvick/Conque-Shell'
Plugin 'scrooloose/nerdtree'
Plugin 'maksimr/vim-jsbeautify'
Plugin 'einars/js-beautify'
Plugin 'altercation/vim-colors-solarized'
Plugin '2072/PHP-Indenting-for-VIm'
Plugin 'scrooloose/nerdcommenter'
Plugin 'yegappan/greplace'
Plugin 'yegappan/grep'
Plugin 'joonty/vdebug'
Plugin 'kien/ctrlp.vim'
Plugin 'kchmck/vim-coffee-script'
Plugin 'tpope/vim-fugitive'
Plugin 'groenewege/vim-less'
call vundle#end()
filetype plugin on
syntax enable
set t_Co=256
let g:solarized_termcolors=16
set background=dark
colorscheme solarized
function ClearReg()
let regs='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789/-"'
let i=0
while (i<strlen(regs))
exec 'let @'.regs[i].'=""'
let i=i+1
endwhile
unlet regs
endfunction

Loading…
Cancel
Save