8 lines
196 B
VimL
8 lines
196 B
VimL
syntax on
|
|
set shiftwidth=4 smarttab
|
|
set expandtab
|
|
set tabstop=8 softtabstop=0
|
|
set number
|
|
|
|
:inoremap <S-Tab> <C-V><Tab>
|
|
autocmd Filetype make setlocal autoindent noexpandtab tabstop=4 shiftwidth=4
|