Files
dotfiles/.config/vim/after/ftplugin/python.vim

9 lines
217 B
VimL

" Use 4 spaces for indentation
setlocal tabstop=4
setlocal shiftwidth=0
setlocal expandtab
" Delete all 4 spaces when pressing backspace
setlocal smarttab
" PEP-8 wants 79 as maximum line length
setlocal textwidth=79