13 lines
151 B
VimL
13 lines
151 B
VimL
" auto indent
|
|
filetype plugin indent on
|
|
|
|
" enable syntax highlighting
|
|
syntax on
|
|
|
|
" tabwidth
|
|
set tabstop=4
|
|
set shiftwidth=4
|
|
|
|
" line numbers
|
|
set number
|
|
|