18 lines
309 B
VimL
18 lines
309 B
VimL
" automatically indent new lines
|
|
set autoindent
|
|
|
|
" automatically write the current file when changing with multiple files open
|
|
set autowrite
|
|
|
|
" activate line numbers
|
|
set number
|
|
|
|
" turn on row and column position
|
|
set ruler
|
|
|
|
" show command and insert modes
|
|
set showmode
|
|
|
|
" set a tab to two spaces
|
|
set tabstop=2
|