blob: 58990258317413b87559876b51ee3c59637b51cc (
plain)
1
2
3
4
5
6
7
|
#!/bin/bash
# Link at home folder
stow -t ~ bash vim tmux git
# Link at XDG_CONFIG_HOME if set, if not to $HOME/.config (they should be the same)
stow -t ${XDG_CONFIG_HOME:=$HOME/.config} nvim
|