19 lines
449 B
Bash
Executable File
19 lines
449 B
Bash
Executable File
#! /bin/sh
|
|
#
|
|
# clone_and_link.sh
|
|
# Copyright (C) 2016 fabian <fabian@fabi-laptop-arch>
|
|
#
|
|
# Distributed under terms of the MIT license.
|
|
#
|
|
|
|
|
|
git submodule update --init --recursive
|
|
echo "ln -s $PWD/vim $HOME/.vim"
|
|
ln -Tsv $PWD/vim $HOME/.vim
|
|
ln -Tsv ~/.vim/.vimrc $HOME/.vimrc
|
|
ln -Tsv $PWD/zsh $HOME/.zsh
|
|
ln -Tsv ~/.zsh/.zshrc $HOME/.zshrc
|
|
ln -Tsv $PWD/tmux $HOME/.tmux
|
|
ln -Tsv ~/.tmux/.tmux.conf $HOME/.tmux.conf
|
|
ln -Tsv $PWD/nvim $HOME/.config/nvim
|