diff --git a/lua/kickstart/plugins/blink-cmp.lua b/lua/kickstart/plugins/blink-cmp.lua index f89eb89..4ec7416 100644 --- a/lua/kickstart/plugins/blink-cmp.lua +++ b/lua/kickstart/plugins/blink-cmp.lua @@ -1,3 +1,5 @@ +---@module 'lazy' +---@type LazySpec return { { -- Autocompletion 'saghen/blink.cmp', diff --git a/lua/kickstart/plugins/conform.lua b/lua/kickstart/plugins/conform.lua index 6179f68..ebae08f 100644 --- a/lua/kickstart/plugins/conform.lua +++ b/lua/kickstart/plugins/conform.lua @@ -1,3 +1,5 @@ +---@module 'lazy' +---@type LazySpec return { { -- Autoformat 'stevearc/conform.nvim', diff --git a/lua/kickstart/plugins/lspconfig.lua b/lua/kickstart/plugins/lspconfig.lua index 8dbd566..0d114ad 100644 --- a/lua/kickstart/plugins/lspconfig.lua +++ b/lua/kickstart/plugins/lspconfig.lua @@ -1,4 +1,6 @@ -- LSP Plugins +---@module 'lazy' +---@type LazySpec return { { -- Main LSP Configuration diff --git a/lua/kickstart/plugins/mini.lua b/lua/kickstart/plugins/mini.lua index 98f2e64..0bd1629 100644 --- a/lua/kickstart/plugins/mini.lua +++ b/lua/kickstart/plugins/mini.lua @@ -1,3 +1,5 @@ +---@module 'lazy' +---@type LazySpec return { { -- Collection of various small independent plugins/modules 'nvim-mini/mini.nvim', diff --git a/lua/kickstart/plugins/telescope.lua b/lua/kickstart/plugins/telescope.lua index e5fc308..8eb8581 100644 --- a/lua/kickstart/plugins/telescope.lua +++ b/lua/kickstart/plugins/telescope.lua @@ -5,6 +5,8 @@ -- -- Use the `dependencies` key to specify the dependencies of a particular plugin +---@module 'lazy' +---@type LazySpec return { { -- Fuzzy Finder (files, lsp, etc) 'nvim-telescope/telescope.nvim', diff --git a/lua/kickstart/plugins/todo-comments.lua b/lua/kickstart/plugins/todo-comments.lua index f1da5c1..d678d18 100644 --- a/lua/kickstart/plugins/todo-comments.lua +++ b/lua/kickstart/plugins/todo-comments.lua @@ -1,4 +1,6 @@ -- Highlight todo, notes, etc in comments +---@module 'lazy' +---@type LazySpec return { { 'folke/todo-comments.nvim', diff --git a/lua/kickstart/plugins/tokyonight.lua b/lua/kickstart/plugins/tokyonight.lua index 1b32f79..8c4b375 100644 --- a/lua/kickstart/plugins/tokyonight.lua +++ b/lua/kickstart/plugins/tokyonight.lua @@ -1,3 +1,5 @@ +---@module 'lazy' +---@type LazySpec return { { -- You can easily change to a different colorscheme. -- Change the name of the colorscheme plugin below, and then diff --git a/lua/kickstart/plugins/treesitter.lua b/lua/kickstart/plugins/treesitter.lua index 9c6fe27..25196e9 100644 --- a/lua/kickstart/plugins/treesitter.lua +++ b/lua/kickstart/plugins/treesitter.lua @@ -1,3 +1,5 @@ +---@module 'lazy' +---@type LazySpec return { { -- Highlight, edit, and navigate code 'nvim-treesitter/nvim-treesitter', diff --git a/lua/kickstart/plugins/which-key.lua b/lua/kickstart/plugins/which-key.lua index 21d4120..ae282df 100644 --- a/lua/kickstart/plugins/which-key.lua +++ b/lua/kickstart/plugins/which-key.lua @@ -12,6 +12,8 @@ -- Then, because we use the `opts` key (recommended), the configuration runs -- after the plugin has been loaded as `require(MODULE).setup(opts)`. +---@module 'lazy' +---@type LazySpec return { { -- Useful plugin to show you pending keybinds. 'folke/which-key.nvim',