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.
9 lines
250 B
Lua
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"
|
|
})
|