Files
dotfiles/clone_and_link.sh

19 lines
449 B
Bash
Raw Permalink Normal View History

2016-11-18 09:20:00 +01:00
#! /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
2017-05-24 16:59:32 +02:00
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
2020-03-23 15:08:52 +01:00
ln -Tsv $PWD/nvim $HOME/.config/nvim