From bd3db43e3a53a8cdf08a47e8095db72024e78772 Mon Sep 17 00:00:00 2001 From: Tyler Hallada Date: Fri, 31 Jul 2026 12:26:04 -0400 Subject: [PATCH] Register wezterm-types with lazydev The plugin was installed and eagerly loaded but never added to lazydev's library, so it provided no completion for wezterm configs. Co-Authored-By: Claude Opus 5 --- lua/plugins/wezterm-types.lua | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/lua/plugins/wezterm-types.lua b/lua/plugins/wezterm-types.lua index 4062caa..e4c39de 100644 --- a/lua/plugins/wezterm-types.lua +++ b/lua/plugins/wezterm-types.lua @@ -1 +1,14 @@ -return { "justinsgithub/wezterm-types" } +return { + { + "justinsgithub/wezterm-types", + lazy = true, + }, + { + "folke/lazydev.nvim", + opts = { + library = { + { path = "wezterm-types", mods = { "wezterm" } }, + }, + }, + }, +}