all repos

init.lua @ eb8a97cb08cb16f270df93233c82613132f345cb

my nvim config
2 files changed, 2 insertions(+), 3 deletions(-)
feat(gopher): load also on sync install command

- used in [https://github.com/olexsmir/dotfiles/blob/master/bin/go-install-bins]
Author: Oleksandr Smirnov olexsmir@gmail.com
Committed at: 2025-03-15 16:16:27 +0200
Parent: c2162ca
M lua/plugins/git.lua

@@ -1,5 +1,3 @@

----@diagnostic disable: missing-fields - ---@type LazySpec return { {

@@ -23,6 +21,7 @@ { "<leader>gb", wrap "blame" },

} end, ---@type Gitsigns.Config + ---@diagnostic disable: missing-fields opts = { max_file_length = 1000, current_line_blame = true,
M lua/plugins/gopher.lua

@@ -4,7 +4,7 @@ ---@type LazySpec

return { "olexsmir/gopher.nvim", ft = "go", - cmd = "GoInstallDeps", + cmd = { "GoInstallDepsSync", "GoInstallDeps" }, build = function() pcall(vim.cmd.GoInstallDeps) end,