diff options
author | Teddy Wing | 2020-07-19 03:02:28 +0200 |
---|---|---|
committer | Teddy Wing | 2020-07-19 03:02:28 +0200 |
commit | 4273f1bdc99948d681d36e162115cf6f52d43f76 (patch) | |
tree | bb67860c2beec391d510e61f6c8472476aa6f336 /after/ftplugin | |
parent | 3d6da6734933553ebf5a749e72cb3add41cf6e93 (diff) | |
download | dotvim-4273f1bdc99948d681d36e162115cf6f52d43f76.tar.bz2 |
Add after/ftplugin/rust.vim
Fix bugs introduced by activating the Rust Vim plugin's ftplugin.
Diffstat (limited to 'after/ftplugin')
-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 |