Skip to content

Instantly share code, notes, and snippets.

@leo-msm
leo-msm / .vimrc
Last active November 8, 2017 11:39
Vim configuration
set tabstop=2 " The width of a TAB is set to 2.
" Still it is a \t. It is just that
" Vim will interpret it to be having
" a width of 2.
set shiftwidth=2 " Indents will have a width of 2.
set softtabstop=2 " Sets the number of columns for a TAB.
set expandtab " Expand TABs to spaces.