vim: Autoindent new lines

This option is not set in vanilla vim by default.
This commit is contained in:
2020-10-26 13:38:09 +01:00
parent e8d1ae12c7
commit 7a5c898621

View File

@@ -28,6 +28,10 @@ set cursorline
" new lines and delete it when joining; do not break already too long lines;
" allow formatting with gq.
set formatoptions=tcroqlj
" Autoindent new lines
set autoindent
" Copy structure of the existing lines indent when autoindenting a new line
set copyindent
" Keep lines under 80 characters.
set textwidth=80
" Do not insert two spaces before a new sentence when formatting
@@ -51,8 +55,6 @@ else
nmap cw dwi
nmap cW dWi
endif
" Copy structure of the existing lines indent when autoindenting a new line
set copyindent
" Show ruler at 80 and 100 columns
set colorcolumn=80,100
" Show menu for possible matches when using command-line completing.