diff options
author | Squibid <me@zacharyscheiman.com> | 2024-11-19 13:13:33 -0600 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2024-11-19 13:13:33 -0600 |
commit | 95fcc5e416218b3dac38649b8549319a922901d9 (patch) | |
tree | 100a7ae090dda7985cb3ee87bc9f93bf8d17f319 /init.lua | |
parent | fda8909c9c9ad4d6c104018ab683d5e7a54e20a0 (diff) | |
download | nvim-95fcc5e416218b3dac38649b8549319a922901d9.tar.gz nvim-95fcc5e416218b3dac38649b8549319a922901d9.tar.bz2 nvim-95fcc5e416218b3dac38649b8549319a922901d9.zip |
make vim.cmd calls more fancy
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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') |