How do you enable auto-indentation in Vim?
Answer
set autoindent smartindent
Explanation
Use autoindent to copy indentation from the current line. smartindent adds C-like indentation logic. For filetype-specific, use filetype indent on.
set autoindent smartindent
Use autoindent to copy indentation from the current line. smartindent adds C-like indentation logic. For filetype-specific, use filetype indent on.