18 lines
236 B
VimL
18 lines
236 B
VimL
" set non-compatible
|
|
set nocompatible
|
|
|
|
" set syntax highlighting
|
|
syntax on
|
|
|
|
call pathogen#runtime_append_all_bundles()
|
|
call pathogen#helptags()
|
|
|
|
set number
|
|
|
|
" set tabwidth
|
|
set autoindent
|
|
set smartindent
|
|
set shiftwidth=4
|
|
set tabstop=4
|
|
|
|
|