aboutsummaryrefslogtreecommitdiff
path: root/lua/config
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2022-08-01 01:14:09 +0800
committerjdhao <jdhao@hotmail.com>2022-08-01 01:14:09 +0800
commit5498a05bf782977453f11608f5ad905c9119790f (patch)
treed4a46cf71c9741f84d8a386306a0ce1664404081 /lua/config
parent644f8b6e2dc2ff3100c1f489a4c343f64f0d992c (diff)
revert to vim-auto-save
auto-save.nvim is erroring out
Diffstat (limited to 'lua/config')
-rw-r--r--lua/config/autosave.lua15
1 files changed, 0 insertions, 15 deletions
diff --git a/lua/config/autosave.lua b/lua/config/autosave.lua
deleted file mode 100644
index d290e7f..0000000
--- a/lua/config/autosave.lua
+++ /dev/null
@@ -1,15 +0,0 @@
-require("autosave").setup({
- enabled = true,
- execution_message = "Autosaved at " .. vim.fn.strftime("%H:%M:%S"),
- events = { "InsertLeave", "TextChanged" },
- conditions = {
- exists = true,
- filename_is_not = {"plugins.lua"},
- filetype_is_not = {},
- modifiable = true,
- },
- write_all_buffers = false,
- on_off_commands = true,
- clean_command_line_interval = 1000,
- debounce_delay = 135,
-})