" Set the runtime path to include Vundle and initialize
setrtp+=~/.vim/bundle/Vundle.vim
" Download plug-ins to the ~/.vim/plugged/ directory
callvundle#begin('~/.vim/plugged')
" Let Vundle manage Vundle
Plugin'VundleVim/Vundle.vim'
Plugin'sheerun/vim-polyglot'
Plugin'lifepillar/vim-solarized8'
Plugin'Yggdroot/indentLine'
Plugin'tpope/vim-fugitive'
Plugin'jiangmiao/auto-pairs'
Plugin'preservim/nerdtree'
" install mit vim +PluginInstall +qall
callvundle#end()
filetypepluginindenton
letg:AutoPairsShortcutToggle='<C-P>'"The auto-pairs plug-in provides a variable specifically for this, which we can set in .vimrc: Pair completion is now toggled whenever we press Ctrl+P in normal mode.
setnu" Enable line numbers
syntaxon" Enable syntax highlighting
" How many columns of whitespace a \t is worth
settabstop=4
" How many columns of whitespace a level of indentation is worth
setshiftwidth=4
" Use spaces when tabbing
setexpandtab
setincsearch" Enable incremental search
sethlsearch" Enable highlight search
settermwinsize=12x0" Set terminal size
setsplitbelow" Always split below
setmouse=a" Enable mouse drag on window splits
setbackground=light" dark or light
colorschemesolarized8" Your favorite color scheme's name
letNERDTreeShowHidden=1" Show hidden files
letNERDTreeShowLineNumbers=0" Hide line numbers
letNERDTreeMinimalMenu=1" Use the minimal menu (m)
letNERDTreeWinSize=31" Set panel width to 31 columns