Skip to content

Instantly share code, notes, and snippets.

View vtellier's full-sized avatar

Vincent Tellier vtellier

View GitHub Profile
@vtellier
vtellier / .vimrc
Last active March 24, 2022 10:27
My vimrc
filetype plugin indent on
set number " Show line numbers
set tabstop=4 " show existing tab with 4 spaces width
set expandtab " On pressing tab, insert 4 spaces
set ignorecase " Case insentivie searches
set autoindent " Always set autoindentation
set copyindent " Use the previous indentation when autoindenting
set shiftwidth=4 " when indenting with '>', use 4 spaces width
set shiftround " Use multiple shift width when using '>'