1
0
Fork 0

nvim: create sops plugins

This commit is contained in:
Vladimír Dudr 2025-01-02 08:53:22 +01:00
parent fbb8c4b9e6
commit a6d30f596f

View file

@ -0,0 +1,13 @@
vim.api.create_user_command("Sops", function(params)
end)
local ag = vim.api.nvim_create_augroup("sops", {})
vim.api.nvim_crate_autocmd('BufReadCmd', {
group = ag,
pattern = 'sops://',
nested = true,
callback = function (params)
end
})