all repos

init.lua @ 4478ad77b52512a97dd283b4af0520398c0efb98

my nvim config
11 files changed, 11 insertions(+), 0 deletions(-)
refactor(plugins): add type annotation
Author: Smirnov Oleksandr ss2316544@gmail.com
Committed at: 2024-04-15 01:14:49 +0300
Parent: 16f30e9
M lua/plugins/completion.lua

@@ -1,3 +1,4 @@

+---@type LazySpec return { { "hrsh7th/nvim-cmp",
M lua/plugins/copilot.lua

@@ -1,3 +1,4 @@

+---@type LazySpec[] return { { "zbirenbaum/copilot.lua",
M lua/plugins/core.lua

@@ -1,3 +1,4 @@

+---@type LazySpec[] return { "nvim-lua/plenary.nvim", "kyazdani42/nvim-web-devicons",
M lua/plugins/git.lua

@@ -1,3 +1,4 @@

+---@type LazySpec[] return { { "lewis6991/gitsigns.nvim",
M lua/plugins/lualine.lua

@@ -40,6 +40,7 @@ cond = require("scratch.harpoon_status").exists,

}, } +---@type LazySpec return { "nvim-lualine/lualine.nvim", event = "VeryLazy",
M lua/plugins/luasnip.lua

@@ -1,3 +1,4 @@

+---@type LazySpec return { "L3MON4D3/LuaSnip", dependencies = { "rafamadriz/friendly-snippets" },
M lua/plugins/mini.lua

@@ -1,3 +1,4 @@

+---@type LazySpec[] return { { "echasnovski/mini.bufremove",
M lua/plugins/navigation.lua

@@ -1,3 +1,4 @@

+---@type LazySpec[] return { { "mbbill/undotree",
M lua/plugins/neotest.lua

@@ -1,3 +1,4 @@

+---@type LazySpec return { "nvim-neotest/neotest", keys = function()
M lua/plugins/telescope.lua

@@ -1,3 +1,4 @@

+---@type LazySpec return { "nvim-telescope/telescope.nvim", event = "VeryLazy",
M lua/plugins/treesitter.lua

@@ -1,3 +1,4 @@

+---@type LazySpec return { "nvim-treesitter/nvim-treesitter", event = "BufReadPost",