From 0194df8e05a409908fb0fced8b3877c87b23caa6 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Tue, 20 Jul 2021 09:09:35 +0200 Subject: [PATCH] docs: added vim-plug instructions and updated lazy-loading event for packer to BufReadPre --- README.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5950547..334d0c9 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Install the plugin with your preferred package manager: -- Lua use({ "folke/persistence.nvim", - event = "VimEnter", + event = "BufReadPre", -- this will only start session saving when an actual file was opened module = "persistence", config = function() require("persistence").setup() @@ -29,6 +29,21 @@ use({ }) ``` +### [vim-plug](https://github.com/junegunn/vim-plug) + +```vim +" Vim Script +Plug 'folke/persistence.nvim' + +lua << EOF + require("persistence").setup { + -- your configuration comes here + -- or leave it empty to use the default settings + -- refer to the configuration section below + } +EOF +``` + ## ⚙️ Configuration Persistence comes with the following defaults: