Make a few more things lazier

This commit is contained in:
ViViDboarder 2024-09-19 11:01:04 -07:00
parent ff18088da3
commit 62f51ed97c

View File

@ -195,6 +195,7 @@ return {
require("plugins.darknotify") require("plugins.darknotify")
end, end,
dependencies = { { "https://github.com/nvim-lualine/lualine.nvim" } }, dependencies = { { "https://github.com/nvim-lualine/lualine.nvim" } },
lazy = true,
}, },
-- Custom start screen -- Custom start screen
@ -221,7 +222,7 @@ return {
-- Debug adapter protocol -- Debug adapter protocol
{ {
"https://github.com/mfussenegger/nvim-dap", "https://github.com/mfussenegger/nvim-dap",
-- TODO: Move to lazy.nvim and allow it to load this only when the required debuggers are loaded -- TODO: Load this only when the required debuggers are loaded
ft = { "python", "rust" }, ft = { "python", "rust" },
}, },
@ -286,6 +287,7 @@ return {
{ {
"https://github.com/folke/neodev.nvim", "https://github.com/folke/neodev.nvim",
dependencies = { { "https://github.com/neovim/nvim-lspconfig" } }, dependencies = { { "https://github.com/neovim/nvim-lspconfig" } },
ft = { "lua" },
}, },
-- Rust analyzer -- Rust analyzer
@ -455,6 +457,7 @@ return {
config = function() config = function()
require("plugins.telescope") require("plugins.telescope")
end, end,
lazy = true,
}, },
-- Filetypes -- Filetypes
@ -575,6 +578,7 @@ return {
"SourcegraphSearch", "SourcegraphSearch",
}, },
enabled = vim.g.install_sourcegraph, enabled = vim.g.install_sourcegraph,
lazy = true,
}, },
{ {
@ -586,6 +590,7 @@ return {
dependencies = { dependencies = {
{ "https://github.com/tpope/vim-rsi" }, { "https://github.com/tpope/vim-rsi" },
}, },
lazy = true,
}, },
{ {
@ -595,5 +600,6 @@ return {
config = function() config = function()
require("plugins.copilotchat").setup() require("plugins.copilotchat").setup()
end, end,
lazy = true,
}, },
} }