REFACTOR: add maintenance roles doing configs stuff and system updates, add dependencies for neovim in base system
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
return {
|
||||
"okuuva/auto-save.nvim",
|
||||
cmd = "ASToggle", -- optional for lazy loading on command
|
||||
event = { "InsertLeave", "TextChanged" }, -- optional for lazy loading on trigger events
|
||||
opts = {
|
||||
-- your config goes here
|
||||
-- or just leave it empty :)
|
||||
},
|
||||
keys = {
|
||||
{ "<leader>sa", ":ASToggle<CR>", desc = "Toggle auto-save" },
|
||||
},
|
||||
config = function()
|
||||
require("auto-save").setup { enabled = true }
|
||||
end,
|
||||
}
|
||||
Reference in New Issue
Block a user