51 lines
1.1 KiB
Bash
51 lines
1.1 KiB
Bash
#!/bin/sh
|
|
|
|
# empty
|
|
# cleaning
|
|
rm -rf ~/.bash* ~/.profile
|
|
rm -rf ~/.dotfiles
|
|
|
|
# repo
|
|
git clone https://github.com/ftpd/dotfiles.git ~/.dotfiles
|
|
|
|
## vim
|
|
# cleaning
|
|
rm -rf ~/.vim*
|
|
rm -rf ~/.config/nvim
|
|
# installing
|
|
mkdir -p ~/.config
|
|
ln -sf ~/.dotfiles/vim ~/.vim
|
|
ln -sf ~/.dotfiles/vim/init.vim ~/.vimrc
|
|
|
|
## .gitignore
|
|
# cleaning
|
|
rm -rf ~/.gitignore
|
|
# installing
|
|
ln -sf ~/.dotfiles/conf/gitignore ~/.gitignore
|
|
git config --global core.excludesfile ~/.gitignore
|
|
|
|
## .fdignore
|
|
# cleaning
|
|
rm -rf ~/.fdignore
|
|
# installing
|
|
ln -sf ~/.dotfiles/conf/fdignore ~/.fdignore
|
|
|
|
## tmux
|
|
# cleaning
|
|
rm -rf ~/.tmux.conf
|
|
# installing
|
|
ln -sf ~/.dotfiles/conf/tmux.conf ~/.tmux.conf
|
|
|
|
## zsh
|
|
# cleaning
|
|
rm -rf ~/.zsh ~/.zshrc
|
|
mkdir -p ~/.zsh/plugins ~/.zsh/themes
|
|
# dependiences
|
|
git clone https://github.com/zsh-users/zsh-autosuggestions.git ~/.zsh/plugins/zsh-autosuggestions
|
|
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.zsh/plugins/zsh-syntax-highlighting
|
|
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/.zsh/themes/powerlevel10k
|
|
# install
|
|
ln -sf ~/.dotfiles/zsh/zshrc ~/.zshrc
|
|
ln -sf ~/.dotfiles/zsh/p10k.zsh ~/.p10k.zsh
|
|
touch ~/.zshrc.local
|