diff options
author | William Carroll <wpcarro@gmail.com> | 2018-04-25T17·35-0400 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2018-07-19T16·00-0400 |
commit | 3135e5faf23f83900d16bfd465b4442d51e36377 (patch) | |
tree | cc821e623fa139275ecb97ede4561bdf904d55dc /install.sh | |
parent | 3c8e6f0cc5eac51e369b8ffbd0441366cdc6da40 (diff) |
Refactor install scripts
- Support emacs installation - Export DOTFILES env var to simplify setup. - Change filenames for consistency
Diffstat (limited to 'install.sh')
-rw-r--r-- | install.sh | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/install.sh b/install.sh index 44a1829a521f..b92d4118fba7 100644 --- a/install.sh +++ b/install.sh @@ -1,9 +1,5 @@ #!/usr/bin/env zsh - -# install custom bin/ executables to $HOME/bin -source "${HOME}/dotfiles/bins/setup_bins.sh" - - -# symlink config files -source "${HOME}/dotfiles/configs/setup_configs.sh" +source "${DOTFILES}/bins/setup" +source "${DOTFILES}/configs/setup" +ln -s "${DOTFILES}/emacs.d" "${HOME}/.emacs.d" |