blob: f4e0103bd091c39d4519f35fa59ba8a09a352c47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# BRUTELY INSTALLS CONFIG FILES AS SYMLINKS
#
# WARNINGS:
# * if $HOME contains spaces this breaks
# * `ln -sf` overwrites the destination files
#
# you can play with ln options (e.g., `ln -siv`)
target=$HOME/dotfiles/minimal
dest=$HOME
cd $dest
ln -sf $target/.inputrc
ln -sf $target/.git-prompt.sh
ln -sf $target/.bashrc
ln -sf $target/.bash_aliases
mkdir -p $dest/.config
cd $dest/.config
ln -sf $target/.config/nvim
ln -sf $target/.config/tmux
|