#TIL : Convert tabs to spaces


21 Feb 2018 / by KhanhIceTea

This is my config to use 4 spaces instead tab

filetype plugin indent on
set tabstop=4
set shiftwidth=4
set expandtab

To convert existing file from tabs to spaces, use this command

:%retab

Sound good ?