add arch setup justfile

This commit is contained in:
Alexander Navarro 2025-12-10 16:42:29 -03:00
parent fc134591c2
commit a85aa9ee0f
4 changed files with 133 additions and 0 deletions

View file

@ -16,6 +16,7 @@ end
vim.opt.rtp:prepend(lazypath)
require("aleidk.options")
require("aleidk.commands")
require("aleidk.autocmds")
require("aleidk.keymaps")

View file

@ -0,0 +1,11 @@
vim.api.nvim_create_user_command("SopsDecrypt", function(args)
vim.cmd([[! sops decrypt -i %]])
end, {
desc = "Decrypt current file with sops",
})
vim.api.nvim_create_user_command("SopsEncrypt", function(args)
vim.cmd([[! sops encrypt -i %]])
end, {
desc = "Decrypt current file with sops",
})