dotfiles/.vimrc

10 lines
203 B
VimL
Raw Normal View History

2017-09-01 12:34:31 +00:00
syntax on
filetype plugin indent on
2020-01-07 13:11:38 +00:00
" show existing tab with 2 spaces width
set tabstop=2
" when indenting with '>', use 2 spaces width
set shiftwidth=2
" On pressing tab, insert 2 spaces
2017-09-01 12:34:31 +00:00
set expandtab