summary refs log tree commit diff
path: root/link.sh
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2017-09-15 11:30:20 -0400
committerJune McEnroe <programble@gmail.com>2017-09-15 11:30:20 -0400
commit147512b83552a097f770db85def0d9d446420d1b (patch)
treec0528989f271ac16d706170232579d8e91e780cc /link.sh
parentRename files directory etc (diff)
downloadsrc-147512b83552a097f770db85def0d9d446420d1b.tar.gz
src-147512b83552a097f770db85def0d9d446420d1b.zip
Rename zsh scripts .zsh
Diffstat (limited to 'link.sh')
-rwxr-xr-xlink.sh39
1 files changed, 0 insertions, 39 deletions
diff --git a/link.sh b/link.sh
deleted file mode 100755
index e8daa38d..00000000
--- a/link.sh
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/usr/bin/env zsh
-
-# Create symlines in ~ for files in curtis.
-
-set -o errexit -o nounset -o pipefail
-
-error() {
-  echo "$1"
-  exit 1
-}
-
-link() {
-  local source_path="$PWD/home/$1"
-  local dest_path="$HOME/$1"
-
-  [ -h "$dest_path" ] && return
-  [ -e "$dest_path" ] && error "$dest_path exists"
-
-  mkdir -p "$(dirname "$dest_path")"
-  ln -s "$source_path" "$dest_path"
-  echo "$1"
-}
-
-link '.bin/sup'
-link '.bin/tup'
-link '.bin/up'
-link '.config/git/config'
-link '.config/git/ignore'
-link '.config/htop/htoprc'
-link '.config/nvim/colors/trivial.vim'
-link '.config/nvim/init.vim'
-link '.config/nvim/syntax/nasm.vim'
-link '.gdbinit'
-link '.gnupg/gpg-agent.conf'
-link '.hushlogin'
-link '.inputrc'
-link '.psqlrc'
-link '.ssh/config'
-link '.zshrc'