From bb05f09bec3b65b648e412f5417f171d4645ac60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Sat, 16 Sep 2023 08:20:05 +0200 Subject: [PATCH] docs: improve README.md --- README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index b15168e..a1152b2 100644 --- a/README.md +++ b/README.md @@ -27,20 +27,20 @@ ## Usage See also [lazy.nvim](https://github.com/folke/lazy.nvim/#-plugin-spec) plugin spec. -| Property | Type | Description | -|----------|------|-------------| -| plugin | derivation | The plugins vimPlugin derivation. | -| lazy | bool | Like [lazy.nvim](https://github.com/folke/lazy.nvim/#-plugin-spec). | -| enabled | bool | Like [lazy.nvim](https://github.com/folke/lazy.nvim/#-plugin-spec) | -| dependecies | list attrset | List of plugin definitions. | -| init | str | Lua code to run on startup. | -| opts | attrset | Attrset of primitive types (str, bool, int, float, list, attrset) which gets transformed into lua | -| conf | str | Lua code. Like config function body in [lazy.nvim](https://github.com/folke/lazy.nvim/#-plugin-spec) | -| event | list str | List of event names to lazy load on. | -| cmd | list str | List of commands to lazy load on. | -| ft | list str | List of filetypes to lazy load on. | -| keys | attrset | See [Example](#example) | -| priority | int | Like [lazy.nvim](https://github.com/folke/lazy.nvim/#-plugin-spec) | +| Property | Type | Description | +|-------------|------------|------------------------------------------------------------------------------------------------------| +| plugin | derivation | The plugins vimPlugin derivation. | +| lazy | bool | Like [lazy.nvim](https://github.com/folke/lazy.nvim/#-plugin-spec). | +| enabled | bool | Like [lazy.nvim](https://github.com/folke/lazy.nvim/#-plugin-spec) | +| dependecies | [attrset] | List of plugin definitions. | +| init | str | Lua code to run on startup. | +| opts | attrset | Attrset of primitive types (str, bool, int, float, list, attrset) which gets transformed into lua | +| conf | str | Lua code. Like config function body in [lazy.nvim](https://github.com/folke/lazy.nvim/#-plugin-spec) | +| event | [str] | List of event names to lazy load on. | +| cmd | [str] | List of commands to lazy load on. | +| ft | [str] | List of filetypes to lazy load on. | +| keys | attrset | See [Example](#example) | +| priority | int | Like [lazy.nvim](https://github.com/folke/lazy.nvim/#-plugin-spec) | ## Example