18 lines
344 B
Bash
Executable File
18 lines
344 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
|
|
ln -s $PWD/vim ~/.vim
|
|
ln -s ~/.vim/.vimrc ~/.vimrc
|
|
ln -s $PWD/zsh ~/.zsh
|
|
ln -s ~/.zsh/.zshrc ~/.zshrc
|
|
ln -s $PWD/tmux ~/.tmux
|
|
ln -s ~/.tmux/.tmux.conf ~/.tmux.conf
|
|
|