make vim.cmd calls more fancy

This commit is contained in:
2024-11-19 13:13:33 -06:00
parent fda8909c9c
commit 95fcc5e416
6 changed files with 7 additions and 7 deletions

View File

@ -6,7 +6,7 @@ local path = vim.fn.stdpath("data").."/site/pack/deps/opt/dep"
if vim.fn.empty(vim.fn.glob(path)) > 0 then
vim.fn.system({ "git", "clone", "--depth=1", "https://git.squi.bid/dep", path })
end
vim.cmd("packadd dep")
vim.cmd.packadd("dep")
-- load miscellaneous utilities
local misc = require('core.misc')