blob: c7fc44af232a4e7121e7df209003086be9285ec2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# 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/.profile
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
|