mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-05 16:46:31 +00:00
1370f6c960
zsh is now default on macOS. This allows a workable environment in zsh right out the gate.
17 lines
407 B
Bash
Executable File
17 lines
407 B
Bash
Executable File
#! /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 "npmrc" "$HOME/.npmrc"
|
|
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"
|
|
source_dotfile "zshrc"
|