7 lines
173 B
Bash
Executable file
7 lines
173 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Install nvchad
|
|
if [ ! -d "$HOME/.config/nvim" ]; then
|
|
echo "Installing nvchad"
|
|
git clone https://github.com/NvChad/NvChad ~/.config/nvim --depth 1
|
|
fi
|