From 52a0828d776b2385214e14a9f3166467f7ed50e5 Mon Sep 17 00:00:00 2001 From: Ali Almohaya Date: Mon, 26 Sep 2022 23:53:18 +0300 Subject: [PATCH] chore: add setup method internaly --- plugin/openingh.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugin/openingh.lua b/plugin/openingh.lua index e61cd7a..b0a96f6 100644 --- a/plugin/openingh.lua +++ b/plugin/openingh.lua @@ -3,6 +3,8 @@ if vim.g.openingh then end vim.g.openingh = true +require("openingh").setup() + vim.api.nvim_create_user_command("OpenInGHFile", function() require("openingh").openFile() end, {})