Talk:Vim: Difference between revisions
Jump to navigation
Jump to search
→TAB STOPS AND AUTO INDENT OF CODE: new section |
(No difference)
|
Latest revision as of 10:07, 22 March 2020
TAB STOPS AND AUTO INDENT OF CODE
:set expandtab " tabstop: Width of tab character " softtabstop: Fine tunes the amount of white space to be added " shiftwidth Determines the amount of whitespace to add in normal mode " expandtab: When on uses space instead of tabs set tabstop=4 set softtabstop=4 set shiftwidth=4 set expandtab
syntax enable set smartindent set tabstop=4 set shiftwidth=4 set expandtab
set noautoindent