diff options
Diffstat (limited to 'after')
-rw-r--r-- | after/ftplugin/rust.vim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/after/ftplugin/rust.vim b/after/ftplugin/rust.vim new file mode 100644 index 0000000..243326f --- /dev/null +++ b/after/ftplugin/rust.vim @@ -0,0 +1,5 @@ +" Fix indentation +setlocal nosmartindent + +" Fix textwidth (the plugin uses 99) +setlocal textwidth=80 |