From 75dad0d6d873117069837418339a4415513d88f3 Mon Sep 17 00:00:00 2001 From: Ashish Wadekar Date: Tue, 18 Dec 2018 12:11:17 +0100 Subject: [PATCH 1/2] Fix typo in Global variable setting --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7a445e8..84abe7c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # vim-vue-plugin -Vim syntax and indent plugin for `.vue` and `.wpy` files. Mainly inspired by [mxw/vim-jsx][1]. +Vim syntax and indent plugin for `.vue` and `.wpy` files. Mainly inspired by [mxw/vim-jsx][1]. ## Install @@ -9,7 +9,7 @@ Vim syntax and indent plugin for `.vue` and `.wpy` files. Mainly inspired by [mx Plugin 'leafOfTree/vim-vue-plugin' - Or Use [vim-pathogen][5] - + cd ~/.vim/bundle && \ git clone https://github.com/leafOfTree/vim-vue-plugin @@ -31,9 +31,9 @@ Since `.vue` is a combination of CSS, HTML and JavaScript, so is `vim-vue-plugin Set global variable to `1` to enable or `0` to disable. -Ex: +Ex: - let g:vim_uue_plugin_load_full_syntax = 1 + let g:vim_vue_plugin_load_full_syntax = 1 | variable | description | default | |---------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|----------------------------| From 821779ae0f2441292978ffb108904b6c8f5f09a2 Mon Sep 17 00:00:00 2001 From: Ashish Wadekar Date: Tue, 18 Dec 2018 12:13:49 +0100 Subject: [PATCH 2/2] Add installation instructions for Vim Plug --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 84abe7c..2835dac 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,11 @@ Vim syntax and indent plugin for `.vue` and `.wpy` files. Mainly inspired by [mx cd ~/.vim/bundle && \ git clone https://github.com/leafOfTree/vim-vue-plugin +- Use [vim-plug][7] + + Plug 'leafOfTree/vim-vue-plugin' + :PlugInstall + - Or manually, clone this plugin, drop it in custom `path/to/this_plugin`, and add it to `rtp` in vimrc set rpt+=path/to/this_plugin @@ -60,3 +65,4 @@ Ex: [4]: https://github.com/digitaltoad/vim-pug [5]: https://github.com/tpope/vim-pathogen [6]: https://tencent.github.io/wepy +[7]: https://github.com/junegunn/vim-plug