From 6dfdfcbeeadcef6020e409678e6986056e528168 Mon Sep 17 00:00:00 2001 From: abxh <83485102+abxh@users.noreply.github.com> Date: Fri, 2 Sep 2022 07:57:31 +0200 Subject: [PATCH] docs: requires() -> require() (#184) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 22d2e36..bd5698d 100644 --- a/README.md +++ b/README.md @@ -177,7 +177,7 @@ You can easily use the color palette for other plugins inside your Neovim config ```lua local colors = require("tokyonight.colors").setup({}) -- pass in any of the config options as explained above -local utils = requires("tokyonight.util") +local utils = require("tokyonight.util") aplugin.background = colors.bg_dark aplugin.my_error = util.brighten(colors.red1, 0.3)