dotfiles/config/nvim/init.lua
Eryn Wells 833c4c8a6f [vim] Add ensureMetadataDirectoriesExist() and call it
This function creates backup, undo, and swap directories if they do not already exist
2022-11-16 08:58:07 -08:00

24 lines
533 B
Lua

-- Eryn Wells <eryn@erynwells.me>
vim.opt.runtimepath:prepend "~/.vim"
vim.cmd [[ source ~/.vimrc.common ]]
require 'configuration'
require 'keys'
function ensureMetadataDirectoriesExist()
paths = {
vim.opt.backupdir:get(),
vim.opt.directory:get(),
vim.opt.undodir:get()
}
for _, opt in ipairs(paths) do
local first_path = opt[1]
if string.find(first_path, "//$") then
os.execute("mkdir -p " .. first_path)
end
end
end
ensureMetadataDirectoriesExist()