diff options
Diffstat (limited to 'after/ftplugin/python.vim')
-rw-r--r-- | after/ftplugin/python.vim | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/after/ftplugin/python.vim b/after/ftplugin/python.vim new file mode 100644 index 0000000..2da6441 --- /dev/null +++ b/after/ftplugin/python.vim @@ -0,0 +1,9 @@ +" signcolumn +setlocal signcolumn=yes + +" tabs and spaces +set tabstop=8 expandtab shiftwidth=4 softtabstop=4 +filetype indent on + +" character limit +setlocal textwidth=80 |