Difference between revisions of "Talk:Vim"
From Free Knowledge Base- The DUCK Project: information for everyone
(→TAB STOPS AND AUTO INDENT OF CODE: new section) |
(No difference)
|
Latest revision as of 11: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