" set up the runtime path set rtp+=~/.vim/bundle/Vundle.vim
" show the row number setnu
" allocate the width of tab as 4 space setts=4
" highlight the cursor line set cursorline
" apply the scheme syntaxon set t_Co=256 "colorscheme skeletor "colorscheme molokai "colorscheme jellybeans colorscheme monokai-bold
" this is where plugin being used call vundle#begin()
" Vundle itself~ Plugin 'VundleVim/Vundle.vim'
" Color scheme Plugin 'flazz/vim-colorschemes'
" the bracket plug Plugin 'frazrepo/vim-rainbow' letg:rainbow_active = 1
" told you what type of file you r dealing with and what mode you r under Plugin 'itchyny/lightline.vim' " close the original mode display and apply the new one set noshowmode set laststatus=2
" nerd tree on side Plugin 'scrooloose/nerdtree' map<C-d> :NERDTreeToggle<CR>
" support for the markdown Plugin 'godlygeek/tabular' Plugin 'plasticboy/vim-markdown'