mirror of
https://github.com/lordmathis/dotfiles.git
synced 2025-11-06 17:54:25 +00:00
10 lines
203 B
VimL
10 lines
203 B
VimL
syntax on
|
|
|
|
filetype plugin indent on
|
|
" show existing tab with 4 spaces width
|
|
set tabstop=4
|
|
" when indenting with '>', use 4 spaces width
|
|
set shiftwidth=4
|
|
" On pressing tab, insert 4 spaces
|
|
set expandtab
|