diff --git a/bundle/nvim-plug/README.md b/bundle/nvim-plug/README.md index 3814c1df5..58cc73b5a 100644 --- a/bundle/nvim-plug/README.md +++ b/bundle/nvim-plug/README.md @@ -10,24 +10,23 @@ ## Usage ```lua -require("plug").setup({ - - bundle_dir = "D:\\bundle_dir\\", +require('plug').setup({ + bundle_dir = 'D:/bundle_dir', }) -require("plug").add({ - { - "wsdjeg/scrollbar.vim", - events = { "VimEnter" }, - config = function() end, - }, - { - "wsdjeg/flygrep.nvim", - cmds = { "FlyGrep" }, - config = function() - require("flygrep").setup() - end, - }, +require('plug').add({ + { + 'wsdjeg/scrollbar.vim', + events = { 'VimEnter' }, + config = function() end, + }, + { + 'wsdjeg/flygrep.nvim', + cmds = { 'FlyGrep' }, + config = function() + require('flygrep').setup() + end, + }, }) ``` @@ -39,6 +38,7 @@ require("plug").add({ | `cmds` | `table`, commands lazy loading | | `events` | `table`, events lazy loading | | `on_ft` | `table`, filetypes lazy loading | +| `type` | `string`, plugin type including `color`, `plugin` | ## Commands