ensure plugins are exported in overlay

This commit is contained in:
iofq 2025-08-15 00:59:00 -05:00
parent 7165161856
commit ac26b74e43
5 changed files with 12 additions and 7 deletions

View file

@ -1,3 +1,10 @@
-- create undopath
local undopath = vim.fn.stdpath('data') .. 'undo'
vim.api.nvim_create_autocmd('VimEnter', {
command = 'silent !mkdir -p ' .. undopath,
group = vim.api.nvim_create_augroup('Init', {}),
})
-- open :h in buffers
vim.api.nvim_create_autocmd('BufWinEnter', {
pattern = '*',