19 lines
506 B
Bash
Executable File
19 lines
506 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
|
|
gln -Tsv $PWD/zsh $HOME/.zsh
|
|
gln -Tsv ~/.zsh/.zshrc $HOME/.zshrc
|
|
gln -Tsv $PWD/tmux $HOME/.tmux
|
|
gln -Tsv ~/.tmux/.tmux.conf $HOME/.tmux.conf
|
|
mkdir -p $HOME/.config/nvim
|
|
gln -Tsv $PWD/nvim $HOME/.config/nvim
|
|
gln -Tsv $PWD/.config/alacritty $HOME/.config/alacritty
|
|
gln -Tsv $PWD/zsh/.p10k.mac.zsh.example $PWD/zsh/.p10k.mac.zsh
|