Dotfiles/modules/nvim.lua
Ade Attwood 77e5752cd8 chore(core): add some more modules in configz
Start building out the config and modules / libs that will make up the
dotfiles. This will start to take over the puppet and eventually be the
only things getting use going forward.
2023-06-02 17:58:39 +01:00

9 lines
250 B
Lua

local git = require('lib.git')
local nvim_pluing_dir_start = os.getenv("HOME") .. "/.config/nvim/pack/bundle/start"
git.repo({
src = "https://github.com/sbdchd/neoformat",
target = nvim_pluing_dir_start .. "/neoformat",
version = "master"
})