From 1aec850d31a409a6e2f2d14a33d72046f19340a2 Mon Sep 17 00:00:00 2001 From: Wes Vetter Date: Mon, 27 Nov 2023 12:30:03 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9A=20Add=20instructions=20for=20nativ?= =?UTF-8?q?e=20package=20install?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add instructions to the README for installing the plugin without a third-party plugin manager. --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 34dd3d1..a3bc68b 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,17 @@ This plugin provides file detection and syntax highlighting support for [Prisma] 1. Add `Plug 'prisma/vim-prisma'` to your `.vimrc` 2. Run `vim +PlugInstall` +## Using Vim's native package system (Vim 8.0+) + +Vim 8 ships with a built-in package manager. You can install the plugin with +the following commands: + +``` +mkdir -p ~/.vim/pack/plugins/start +cd ~/.vim/pack/plugins/start +git clone git@github.com:prisma/vim-prisma.git +``` + # Screenshot ![image](https://user-images.githubusercontent.com/22195362/77247151-4f32bf80-6c54-11ea-88f9-99246476bc80.png) @@ -23,4 +34,4 @@ This plugin is licensed under the MIT license. # Acknowledgement -Thanks to [Harshit Pant](https://github.com/pantharshit00) for initially creating and maintaining this plugin. \ No newline at end of file +Thanks to [Harshit Pant](https://github.com/pantharshit00) for initially creating and maintaining this plugin.