devconf/tools/install-light.sh

31 lines
952 B
Bash
Raw Normal View History

2021-02-01 09:33:37 +00:00
#!/usr/bin/env bash
git submodule update --init --recursive
2021-01-16 10:28:48 +00:00
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
curl -sL --proto-redir -all,https https://raw.githubusercontent.com/zplug/installer/master/installer.zsh | zsh
rm -rf ~/.config/autostart/*
2021-08-08 16:09:47 +00:00
cp ./.config ~ -rf
cp ./.zcustom ~ -rf
cp ./.doom.d ~ -rf
2021-02-01 09:33:37 +00:00
2021-08-08 16:09:47 +00:00
cp ./.zshrc ~ -f
cp ./.profile ~ -f
cp ./.xsession ~ -f
cp ./.ideavimrc ~ -f
cp ./.vimrc ~ -f
cp ./.gitconfig ~ -f
2021-02-01 09:44:22 +00:00
2021-02-15 00:31:45 +00:00
if [ -n "$(command -v vim)" ]; then
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
2021-02-15 00:31:45 +00:00
vim +PlugInstall +qall
fi
2021-02-15 00:19:18 +00:00
if [ -n "$(command -v nvim)" ]; then
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
2021-02-15 00:19:18 +00:00
nvim +PlugInstall +qall
fi
2021-02-01 09:44:22 +00:00
echo "Done installing configs."