From f50130155ec13027f9f41a0a823a2b6a3f2bf10b Mon Sep 17 00:00:00 2001 From: leafOfTree Date: Tue, 6 Apr 2021 13:37:10 +0800 Subject: [PATCH] Update doc --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bcbf5ca..33b2508 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,14 @@ What's New - Or manually, clone this plugin to `path/to/this_plugin`, and add it to `rtp` in vimrc - set rtp+=path/to/this_plugin + ```vim + set rtp+=path/to/this_plugin + + " If filetype is not set to 'vue', try + filetype off + set rtp+=path/to/this_plugin + filetype plugin indent on + ```