11 lines
275 B
Bash
Executable File
11 lines
275 B
Bash
Executable File
mkdir --parents dot-conf
|
|
mkdir --parents dot-conf/.config/lvim
|
|
|
|
cp ${HOME}/.zshrc ./dot-conf/
|
|
cp ${HOME}/.tmux.conf ./dot-conf/
|
|
cp --recursive ${HOME}/.config/lvim/ ./dot-conf/.config
|
|
|
|
fulltime=$(date +%y-%m-%d-%H-%M-%S)
|
|
git add .
|
|
git commit -m "Devboot update: ${fulltime}"
|