all repos

init.lua @ 2ba849f498c0801426ff3cc7f15ccc4a0970d79b

my nvim config
2 files changed, 5 insertions(+), 3 deletions(-)
feat(lazy): auto detect when the plugin is in dev mode
Author: Oleksandr Smirnov olexsmir@gmail.com
Committed at: 2025-01-06 17:26:50 +0200
Parent: 7cc7fb8
M lua/core/lazy.lua

@@ -17,7 +17,11 @@ defaults = {

lazy = true, -- version = "*",-- use only stable releases }, - dev = { path = "~/code" }, + dev = { + path = "~/code", + patterns = { "olexsmir" }, + fallback = true, + }, install = { colorscheme = { "tokyonight" } }, change_detection = { notify = false }, performance = {
M lua/plugins/gopher.lua

@@ -1,11 +1,9 @@

local dev_deps = false ----@module "gopher" ---@type LazySpec return { "olexsmir/gopher.nvim", ft = "go", - dev = true, cmd = "GoInstallDeps", build = function() pcall(vim.cmd.GoInstallDeps)