diff --git a/.vimrc b/.vimrc index c5c1c1d..59b9ae8 100644 --- a/.vimrc +++ b/.vimrc @@ -16,10 +16,12 @@ set hlsearch set ignorecase set smartcase -" Indentation options +" Indentation options (yeah let's switch to spaces instead of tabs I guess...) set autoindent +set expandtab set shiftwidth=4 set tabstop=4 +set softtabstop=4 " Indentation for Python (use 4 spaces) "autocmd FileType python setlocal expandtab shiftwidth=4 softtabstop=4