11 lines
348 B
Bash
Executable file
11 lines
348 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Create directories to prevent stow from symlinking the directories
|
|
|
|
# It's better to have the files symlinked rather than dirs in these cases so
|
|
# that when more files/directories are added they don't get added to the repo,
|
|
# e.g. .vim/plugins
|
|
|
|
mkdir -p ~/.vim
|
|
mkdir -p ~/.local/bin
|
|
# mkdir -p ~/.local/share/flavours/base16/templates
|