1
Fork 0
satellite/dotfiles/neovim/lua/my/helpers/update-nix-fetchgit.lua
2022-08-24 14:54:45 +03:00

10 lines
139 B
Lua

local M = {}
function M.update()
require("my.helpers").saveCursor(function()
vim.cmd(":%!update-nix-fetchgit")
end)
end
return M