summaryrefslogtreecommitdiffstats
path: root/lua/core/auto.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/core/auto.lua')
-rw-r--r--lua/core/auto.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/core/auto.lua b/lua/core/auto.lua
index 1a20612..3e517ab 100644
--- a/lua/core/auto.lua
+++ b/lua/core/auto.lua
@@ -46,3 +46,12 @@ auto('TermClose', {
o.cmdheight = 1
end
})
+
+auto('BufWritePre', { -- make dirs when they don't exist
+ pattern = '*',
+ group = vim.api.nvim_create_augroup('auto_create_dir', { clear = true }),
+ callback = function(ctx)
+ local dir = vim.fn.fnamemodify(ctx.file, ':p:h')
+ vim.fn.mkdir(dir, 'p')
+ end
+})