From ad978044bcaf93ecc0f7c7b63605170705bde32e Mon Sep 17 00:00:00 2001 From: Ryan Reed Date: Thu, 14 Oct 2021 21:36:56 -0400 Subject: [PATCH] Adding python filetype --- dot_vim/after/ftplugin/python.vim | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 dot_vim/after/ftplugin/python.vim diff --git a/dot_vim/after/ftplugin/python.vim b/dot_vim/after/ftplugin/python.vim new file mode 100644 index 0000000..d92a47c --- /dev/null +++ b/dot_vim/after/ftplugin/python.vim @@ -0,0 +1,5 @@ +set colorcolumn=80 +set expandtab +set tabstop=4 +set shiftwidth=4 +set softtabstop=4