mirror of
https://github.com/Cian-H/my_nvim.git
synced 2025-12-22 16:21:56 +00:00
9 lines
151 B
Bash
9 lines
151 B
Bash
#!/usr/bin/env sh
|
|
|
|
mkdir -p ~/.config/nvim
|
|
|
|
if [ -z "$(ls -A ~/.config/nvim)" ]; then
|
|
cp -r /my_nvim_config/* ~/.config/nvim/
|
|
fi
|
|
/usr/bin/env nvim
|