From be2cdeb9882a23686fcddeeda6bcea971d1aac1f Mon Sep 17 00:00:00 2001 From: SL1900 Date: Tue, 29 Jul 2025 01:03:59 +0900 Subject: [PATCH] Added plugin lazydev by folke, including wezterm types --- lua/plugins/lazydev.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 lua/plugins/lazydev.lua diff --git a/lua/plugins/lazydev.lua b/lua/plugins/lazydev.lua new file mode 100644 index 0000000..643223c --- /dev/null +++ b/lua/plugins/lazydev.lua @@ -0,0 +1,12 @@ +return { + "folke/lazydev.nvim", + ft = "lua", + dependencies = { + { "gonstoll/wezterm-types", lazy = true }, + }, + opts = { + library = { + { path = "wezterm-types", mods = { "wezterm" } }, + }, + }, +}