9 lines
220 B
Bash
9 lines
220 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
rm -rf ~/.config/nvim
|
||
|
rm -rf ~/.local/share/nvim
|
||
|
rm -rf ~/.cache/nvim
|
||
|
git clone https://github.com/NvChad/NvChad ~/.config/nvim --depth 1 ; nvim
|
||
|
ln -s $HOME/dotfiles/nvim/custom $HOME/.config/nvim/lua/custom
|
||
|
|