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