.config/nvim/lua/config/autocmds.lua

changeset 1157
a237720efee9
parent 1129
1bd6edeaf6ae
child 1159
9a19621f294c
equal deleted inserted replaced
1156:0a7162df160d 1157:a237720efee9
48 48
49 -- >> simple highlight conflict markers 49 -- >> simple highlight conflict markers
50 autocmd(g, "BufReadPost", "*", function() 50 autocmd(g, "BufReadPost", "*", function()
51 fn.matchadd("Error", [[\m^\([<>|]\)\{7} \@=\|^=\{7}$]]) 51 fn.matchadd("Error", [[\m^\([<>|]\)\{7} \@=\|^=\{7}$]])
52 end) 52 end)
53
54 -- >> Prune old backup and undo files at startup
55 autocmd(g, "User", "VeryLazy", function()
56 local prune_files = require("config.util").prune_files
57 if vim.go.backup then prune_files(vim.go.backupdir, 90) end
58 if vim.go.undofile then prune_files(vim.go.undodir, 90) end
59 end)
60

mercurial