mv rcs to sub

This commit is contained in:
TheK4n 2022-02-05 00:03:08 +03:00
parent a6eaf0202d
commit dca46efc58
3 changed files with 4 additions and 4 deletions

View File

@ -15,12 +15,12 @@ backup:
bash: bash:
test -e ~/.subbash || \ test -e ~/.subbash || \
ln -s $(PWD)/subbash ~/.subbash ln -s $(PWD)/subbash ~/.subbash
ln -s $(PWD)/bashrc ~/.bashrc ln -s ~/.subbash/bashrc ~/.bashrc
zsh: zsh:
test -e ~/.subzsh || \ test -e ~/.subzsh || \
ln -s $(PWD)/subzsh ~/.subzsh ln -s $(PWD)/subzsh ~/.subzsh
ln -s $(PWD)/zshrc ~/.zshrc ln -s ~/.subzsh/zshrc ~/.zshrc
mkdir ~/.subzsh/plugins mkdir ~/.subzsh/plugins
git clone https://github.com/zsh-users/zsh-autosuggestions ~/.subzsh/plugins/zsh-autosuggestions git clone https://github.com/zsh-users/zsh-autosuggestions ~/.subzsh/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting ~/.subzsh/plugins/zsh-syntax-highlighting git clone https://github.com/zsh-users/zsh-syntax-highlighting ~/.subzsh/plugins/zsh-syntax-highlighting
@ -32,9 +32,9 @@ tmux:
vim: vim:
test -e ~/.vim || \ test -e ~/.vim || \
ln -s $(PWD)/subvim ~/.vim ln -s $(PWD)/subvim ~/.vim
ln -s $(PWD)/subvim/.vimrc ~/.vimrc ln -s ~/.vim/.vimrc ~/.vimrc
mkdir -p ~/.config/nvim mkdir -p ~/.config/nvim
ln -s $(PWD)/subvim/.vimrc ~/.config/nvim/init.vim ln -s ~/.vim/.vimrc ~/.config/nvim/init.vim
git clone https://github.com/VundleVim/Vundle.vim.git $(PWD)/subvim/bundle/Vundle.vim git clone https://github.com/VundleVim/Vundle.vim.git $(PWD)/subvim/bundle/Vundle.vim
vim +PluginInstall +qall vim +PluginInstall +qall

View File