2024-08-30 21:44:07 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# To be run in ~/.config/nvim/
|
|
|
|
# This will clone git dirs but the lua/plugins/avante.lua file is made
|
|
|
|
# either from config repo or avante README.
|
|
|
|
# opts = {} section is important.
|
|
|
|
|
|
|
|
git clone https://github.com/LazyVim/starter.git lvs-upstream
|
|
|
|
git clone https://github.com/yetone/avante.nvim.git avante-upstream
|
|
|
|
|
|
|
|
cp -r lvs-upstream/lua .
|
|
|
|
cp lvs-upstream/init.lua .
|
|
|
|
cp lvs-upstream/stylua.toml .
|
|
|
|
|
|
|
|
# Probably run nvim at this point.
|
2024-08-30 21:48:10 +00:00
|
|
|
# If setting up from scratch instead of git repo, copy from avante README
|
|
|
|
# at this point.
|