From bf8d60f2b9f56e2bde196ab972cdb6e7d617b649 Mon Sep 17 00:00:00 2001 From: roey ben arieh Date: Fri, 19 Apr 2024 23:13:00 +0300 Subject: [PATCH] fix(plugin): lazy load attempt.nvim and telescope-dap --- lua/plugins/scratch-files.lua | 1 + lua/plugins/telescope-dap.lua | 1 + 2 files changed, 2 insertions(+) diff --git a/lua/plugins/scratch-files.lua b/lua/plugins/scratch-files.lua index 010d14f..f12122a 100644 --- a/lua/plugins/scratch-files.lua +++ b/lua/plugins/scratch-files.lua @@ -31,6 +31,7 @@ end return { "m-demare/attempt.nvim", + lazy = true, dependencies = { "nvim-lua/plenary.nvim", -- for configuring debugpy to use the venv (via dap-python.lua) "nvim-telescope/telescope-ui-select.nvim", diff --git a/lua/plugins/telescope-dap.lua b/lua/plugins/telescope-dap.lua index 8c90023..d0089a4 100644 --- a/lua/plugins/telescope-dap.lua +++ b/lua/plugins/telescope-dap.lua @@ -31,6 +31,7 @@ end return { "nvim-telescope/telescope-dap.nvim", + lazy = true, dependencies = { "telescope.nvim", "nvim-treesitter/nvim-treesitter",