From d3c2ede4348b25a7a2a734b771493f68175d015a Mon Sep 17 00:00:00 2001 From: Oleksandr Smirnov Date: Sat, 30 Aug 2025 16:22:24 +0300 Subject: [PATCH] chore: add note about lazy loading --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 01ab6a0..872ca69 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,8 @@ Requirements: - [Go](https://github.com/golang/go) installed (tested on 1.23) ```lua +-- NOTE: this plugin is already lazy-loaded, it adds only about 1ms of load +-- time to your config { "olexsmir/gopher.nvim", ft = "go", @@ -25,6 +27,7 @@ Requirements: build = function() vim.cmd.GoInstallDeps() end, + ---@module "gopher" ---@type gopher.Config opts = {}, }