1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
| set nocompatible set encoding=utf8 set fileformats=unix,dos,mac filetype plugin indent on set autoread set scrolloff=7 set wildmenu set ruler set hidden set backspace=eol,start,indent set whichwrap+=<,>,h,l set lazyredraw set magic set showmatch set matchtime=5 set wildignore+=*/tmp/*,*.so,*.o,*.a,*.obj,*.swp,*.zip,*.pyc,*.pyo,*.class,.DS_Store set relativenumber let mapleader=","
set noerrorbells set novisualbell set t_vb= set tm=500
set ignorecase set smartcase set hlsearch set incsearch
set nobackup set nowritebackup set noswapfile
set expandtab set smarttab set shiftwidth=4 set tabstop=4 set linebreak set autoindent set smartindent set wrap
|