diff options
-rw-r--r-- | after/ftplugin/python.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/after/ftplugin/python.vim b/after/ftplugin/python.vim index 0471a94..2da6441 100644 --- a/after/ftplugin/python.vim +++ b/after/ftplugin/python.vim @@ -4,3 +4,6 @@ setlocal signcolumn=yes " tabs and spaces set tabstop=8 expandtab shiftwidth=4 softtabstop=4 filetype indent on + +" character limit +setlocal textwidth=80 |