diff options
author | listout <listout@protonmail.com> | 2021-05-18 11:51:34 +0530 |
---|---|---|
committer | listout <listout@protonmail.com> | 2021-05-18 11:51:34 +0530 |
commit | 3cdf738df2aae637c5d8cb15bff2f0ec9f2b07ab (patch) | |
tree | 1604b8015512cbbabd3605217da38dd64dba1074 /after | |
parent | 6328b0786049154f730aee2f23f290532ef5c124 (diff) |
80 character rule
Diffstat (limited to 'after')
-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 |