dotfiles/vim/.vim/after/ftplugin/python.vim

18 lines
393 B
VimL
Raw Normal View History

2022-08-05 21:36:16 +00:00
" Tab related stuff
set shiftwidth=4 tabstop=4 softtabstop=4 expandtab autoindent smartindent
" Right-most border
set colorcolumn=80
setlocal path=.,**
setlocal wildignore=*.pyc
" if name equals main
map \m iif __name__ == "__main__":<Esc>o<Tab>main()<Esc>o<Bs><Bs><Esc>
" Wrap in docstring quotes
map \" {i"""<Return><Esc>}a<Return>"""<Return><Esc>
2022-09-29 01:44:12 +00:00
" new function
map \f idef ():<Esc>bi