From 05a109422e4c88211e022d57d7d47101f38313b8 Mon Sep 17 00:00:00 2001 From: rootiest Date: Mon, 17 Feb 2025 18:55:18 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Style(wezterm):=20make=20wezterm?= =?UTF-8?q?-types=20a=20dependency=20of=20lazydev?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/data/deps.lua | 5 +++++ lua/plugins/coding.lua | 1 + 2 files changed, 6 insertions(+) diff --git a/lua/data/deps.lua b/lua/data/deps.lua index 1fbb636..4d88a06 100644 --- a/lua/data/deps.lua +++ b/lua/data/deps.lua @@ -97,6 +97,11 @@ M.hardtime = { 'nvim-lua/plenary.nvim', } +--- LazyDev plugin dependencies +M.lazydev = { + 'gonstoll/wezterm-types', +} + --- LazyGit plugin dependencies M.lazygit = { 'nvim-lua/plenary.nvim', diff --git a/lua/plugins/coding.lua b/lua/plugins/coding.lua index 1a8b98b..3c9bb60 100644 --- a/lua/plugins/coding.lua +++ b/lua/plugins/coding.lua @@ -25,6 +25,7 @@ return { { 'folke/lazydev.nvim', opts = require('data.types').lazydev.opts, + dependencies = require('data.deps').lazydev, }, -- { -- G-code -- 'wilriker/gcode.vim',