21 lines
311 B
VimL
21 lines
311 B
VimL
" set non-compatible
|
|
set nocompatible
|
|
|
|
" set syntax highlighting
|
|
syntax on
|
|
|
|
" start pathogen
|
|
call pathogen#infect()
|
|
call pathogen#helptags()
|
|
|
|
" set relative ruler with current line as real line number
|
|
set relativenumber
|
|
set number
|
|
|
|
" set tabwidth
|
|
set autoindent
|
|
set smartindent
|
|
set shiftwidth=4
|
|
set tabstop=4
|
|
|
|
|