what overwrite vim tabstop code example
Example 1: vim change tab size
set tabstop=4
Example 2: vim replace tabs with spaces
" Vi:
" To replace tabs with spaces whilst typing
set tabstop=4 shiftwidth=4 expandtab
set tabstop=4
" Vi:
" To replace tabs with spaces whilst typing
set tabstop=4 shiftwidth=4 expandtab