1
Fork 0
satellite/dotfiles/neovim/lua/my/helpers/update-nix-fetchgit.lua

10 lines
139 B
Lua
Raw Normal View History

2022-05-10 14:28:36 +02:00
local M = {}
function M.update()
require("my.helpers").saveCursor(function()
vim.cmd(":%!update-nix-fetchgit")
end)
2022-05-10 14:28:36 +02:00
end
return M