mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-05 16:16:31 +00:00
15 lines
352 B
Bash
15 lines
352 B
Bash
#! /bin/bash
|
|
|
|
# Link files that can't be sourced
|
|
try_link "ackrc" "$HOME/.ackrc"
|
|
try_link "antrc" "$HOME/.antrc"
|
|
try_link "ctags" "$HOME/.ctags"
|
|
try_link "tigrc" "$HOME/.tigrc"
|
|
try_link "tmux.conf" "$HOME/.tmux.conf"
|
|
|
|
# Source files that can
|
|
source_dotfile "bashrc"
|
|
source_dotfile "bash_profile"
|
|
source_dotfile "bash_alias"
|
|
source_dotfile "bash_funcs"
|