7 lines
141 B
Bash
7 lines
141 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
CWD=$(pwd)
|
||
|
ln -s "$CWD/nvim" "$HOME/.config/nvim"
|
||
|
ln -s "$CWD/i3" "$HOME/.config/i3"
|
||
|
ln -s "$CWD/lazygit" "$HOME/.config/lazygit"
|