Compare commits
No commits in common. "5ee96da76840b5c9b6bab471564df0ae735d3b4f" and "e0235a25d1225cd48f8ae7e6d417b201ddb5d37a" have entirely different histories.
5ee96da768
...
e0235a25d1
|
@ -1,12 +0,0 @@
|
||||||
\.git
|
|
||||||
\.gitea
|
|
||||||
\.github
|
|
||||||
\.gitignore
|
|
||||||
\.stow-global-ignore
|
|
||||||
__pycache__
|
|
||||||
^/README.*
|
|
||||||
^/LICENSE.*
|
|
||||||
^/COPYING
|
|
||||||
\.stow-global-ignore
|
|
||||||
\run-stow.sh
|
|
||||||
\setup-neovim.sh
|
|
20
run-stow.sh
20
run-stow.sh
|
@ -1,20 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
NEOVIM_CONFIG="$HOME/.config/nvim"
|
|
||||||
|
|
||||||
function stowit() {
|
|
||||||
if test -d "$NEOVIM_CONFIG"; then
|
|
||||||
stow -v -R -t "$NEOVIM_CONFIG" . || exit 1
|
|
||||||
else
|
|
||||||
echo "Neovim config directory does not exist: $NEOVIM_CONFIG"
|
|
||||||
echo "Creating config directory..."
|
|
||||||
if ! mkdir -p "$NEOVIM_CONFIG"; then
|
|
||||||
echo "failed to create config folder"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
echo "Created config folder"
|
|
||||||
stowit
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
stowit
|
|
Loading…
Reference in New Issue