dotfiles/nvim/install.sh

10 lines
277 B
Bash
Raw Normal View History

2022-07-01 11:47:23 +02:00
#!/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
2022-07-28 14:35:01 +02:00
ln -s $HOME/dotfiles/nvim/after $HOME/.config/nvim/after
2022-07-01 11:47:23 +02:00