diff --git a/lua/plugins/00-core.lua b/lua/plugins/00-core.lua index ff077f1..77242b4 100644 --- a/lua/plugins/00-core.lua +++ b/lua/plugins/00-core.lua @@ -1,3 +1,4 @@ +---@type LazySpec return { { "goolord/alpha-nvim", enabled = false }, -- Which-key diff --git a/lua/plugins/05-community.lua b/lua/plugins/05-community.lua index 54ff13d..b42563e 100644 --- a/lua/plugins/05-community.lua +++ b/lua/plugins/05-community.lua @@ -1,6 +1,7 @@ local home = vim.fn.hostname() == "comanche" local work = not home +---@type LazySpec return { { "AstroNvim/astrocommunity", branch = "v4" }, -- Language packs diff --git a/lua/plugins/10-colorscheme.lua b/lua/plugins/10-colorscheme.lua index 9fb6b85..7cbdaaa 100644 --- a/lua/plugins/10-colorscheme.lua +++ b/lua/plugins/10-colorscheme.lua @@ -1,3 +1,4 @@ +---@type LazySpec return { { "AstroNvim/astroui", diff --git a/lua/plugins/15-mappings.lua b/lua/plugins/15-mappings.lua index f3279de..5d3152e 100644 --- a/lua/plugins/15-mappings.lua +++ b/lua/plugins/15-mappings.lua @@ -1,3 +1,4 @@ +---@type LazySpec return { "AstroNvim/astrocore", ---@type AstroCoreOpts diff --git a/lua/plugins/16-commands.lua b/lua/plugins/16-commands.lua index 5584cc7..056bad0 100644 --- a/lua/plugins/16-commands.lua +++ b/lua/plugins/16-commands.lua @@ -1,3 +1,4 @@ +---@type LazySpec return { "AstroNvim/astrocore", ---@type AstroCoreOpts diff --git a/lua/plugins/20-lsp.lua b/lua/plugins/20-lsp.lua index ae3c378..daf5402 100644 --- a/lua/plugins/20-lsp.lua +++ b/lua/plugins/20-lsp.lua @@ -1,3 +1,4 @@ +---@type LazySpec return { "AstroNvim/astrolsp", ---@type AstroLSPOpts diff --git a/lua/plugins/30-cvs.lua b/lua/plugins/30-cvs.lua index 7d3ebd8..c0ec18f 100644 --- a/lua/plugins/30-cvs.lua +++ b/lua/plugins/30-cvs.lua @@ -1,3 +1,4 @@ +---@type LazySpec return { --[[ { diff --git a/lua/plugins/40-heirline.lua b/lua/plugins/40-heirline.lua index 4cae805..f35f7f1 100644 --- a/lua/plugins/40-heirline.lua +++ b/lua/plugins/40-heirline.lua @@ -1,3 +1,4 @@ +---@type LazySpec return { "rebelot/heirline.nvim", optional = true, diff --git a/lua/plugins/45-vimwiki.lua b/lua/plugins/45-vimwiki.lua index 38e13ec..4210567 100644 --- a/lua/plugins/45-vimwiki.lua +++ b/lua/plugins/45-vimwiki.lua @@ -1,3 +1,4 @@ +---@type LazySpec return { { "vimwiki/vimwiki", diff --git a/lua/plugins/50-user.lua b/lua/plugins/50-user.lua index f31abb6..e716234 100644 --- a/lua/plugins/50-user.lua +++ b/lua/plugins/50-user.lua @@ -1,3 +1,4 @@ +---@type LazySpec return { { "echasnovski/mini.align", event = "User AstroFile", config = function() require("mini.align").setup({}) end }, { "tpope/vim-abolish", event = "User AstroFile" },