all repos

init.lua @ bc2ed6e46507dd74e93e073b391f974ade6b9eff

my nvim config
4 files changed, 9 insertions(+), 7 deletions(-)
refactor(lazydev): use @module where possible
Author: Smirnov Oleksandr ss2316544@gmail.com
Committed at: 2024-11-04 23:02:45 +0200
Parent: 86ed8c7
M lua/plugins/git.lua

@@ -42,6 +42,7 @@ {

"TimUntersberger/neogit", cmd = "Neogit", keys = { { "<leader>gg", vim.cmd.Neogit } }, + ---@module "neogit" ---@type NeogitConfig opts = { kind = "vsplit",
M lua/plugins/gopher.lua

@@ -1,5 +1,6 @@

local dev_deps = false +---@module "gopher" ---@type LazySpec return { "olexsmir/gopher.nvim",
M lua/plugins/lsp/init.lua

@@ -7,10 +7,12 @@ {

"j-hui/fidget.nvim", dependencies = { "nvim-lspconfig" }, opts = { - progress = { display = { - render_limit = 2, - done_ttl = 2, - } }, + progress = { + display = { + render_limit = 2, + done_ttl = 2, + }, + }, }, }, {

@@ -23,9 +25,6 @@ library = {

{ path = "luvit-meta/library", words = { "vim%.uv" } }, { path = "mini.test", words = { "MiniTest" } }, "lazy.nvim", - "gopher.nvim", - "neogit", - "oil.nvim", }, }, },
M lua/plugins/navigation.lua

@@ -40,6 +40,7 @@ "stevearc/oil.nvim",

event = "VeryLazy", cmd = "Oil", keys = { { "<leader>e", vim.cmd.Oil } }, + ---@module "oil" ---@type oil.setupOpts opts = { columns = { "icon" },