diff options
| author | Teddy Wing | 2020-07-19 02:59:52 +0200 |
|---|---|---|
| committer | Teddy Wing | 2020-07-19 02:59:52 +0200 |
| commit | 3d6da6734933553ebf5a749e72cb3add41cf6e93 (patch) | |
| tree | 873327469e742951f355871258206b5fccbbb569 | |
| parent | 2587bca595708241380c68fc5187b60bbc832c2b (diff) | |
| download | dotvim-3d6da6734933553ebf5a749e72cb3add41cf6e93.tar.bz2 | |
ftplugin/rust.vim: Activate Rust plugin's ftplugin
Take advantage of the Rust Vim plugin's additional language-specific
features, like `///` and `//!` comment handling.
| -rw-r--r-- | ftplugin/rust.vim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ftplugin/rust.vim b/ftplugin/rust.vim index a35a238..08601f6 100644 --- a/ftplugin/rust.vim +++ b/ftplugin/rust.vim @@ -1,5 +1,10 @@ " Rust vim settings +if exists('b:did_ftplugin') + unlet b:did_ftplugin +endif + + " Indentation setlocal expandtab setlocal tabstop=4 |
