diff --git a/.config/nvim/lua/config/autocmds.lua b/.config/nvim/lua/config/autocmds.lua --- a/.config/nvim/lua/config/autocmds.lua +++ b/.config/nvim/lua/config/autocmds.lua @@ -50,12 +50,3 @@ end) autocmd(g, "BufReadPost", "*", function() fn.matchadd("Error", [[\m^\([<>|]\)\{7} \@=\|^=\{7}$]]) end) - --- >> Prune old backup and undo files at startup -autocmd(g, "User", "VeryLazy", function() - local prune_files = require("config.util").prune_files - if vim.go.swapfile then prune_files(vim.go.directory, 90) end - if vim.go.backup then prune_files(vim.go.backupdir, 90) end - if vim.go.undofile then prune_files(vim.go.undodir, 90) end -end) -