add arch setup justfile
This commit is contained in:
parent
fc134591c2
commit
a85aa9ee0f
4 changed files with 133 additions and 0 deletions
11
configs/nvim/lua/aleidk/commands.lua
Normal file
11
configs/nvim/lua/aleidk/commands.lua
Normal 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",
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue