summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dotfiles/pypirc (renamed from .pypirc)0
-rw-r--r--dotfiles/spacemacs (renamed from spacemacs)1
-rwxr-xr-xlink.sh25
3 files changed, 8 insertions, 18 deletions
diff --git a/.pypirc b/dotfiles/pypirc
index 568f97d..568f97d 100644
--- a/.pypirc
+++ b/dotfiles/pypirc
diff --git a/spacemacs b/dotfiles/spacemacs
index 9a32532..f3fa8fd 100644
--- a/spacemacs
+++ b/dotfiles/spacemacs
@@ -15,6 +15,7 @@
games
git
helm
+ latex
markdown
org
pdf-tools
diff --git a/link.sh b/link.sh
index 74b4653..86b22e4 100755
--- a/link.sh
+++ b/link.sh
@@ -1,27 +1,16 @@
#!/bin/bash
-########## define
-
-dir=~/dotfiles # dotfiles directory
-olddir=~/dotfiles_old # old dotfiles backup directory
-files="spacemacs" # list of files/folders to symlink in homedir
-
-########## do
-
# create dotfiles_old in homedir
-echo -n "Creating $olddir for backup of any existing dotfiles in ~ ..."
+olddir=~/dotfiles_old
mkdir -p $olddir
-echo "done"
# change to the dotfiles directory
-echo -n "Changing to the $dir directory ..."
+dir=~/dotfiles/dotfiles
cd $dir
-echo "done"
-# move any existing dotfiles in homedir to dotfiles_old directory, then create symlinks from the homedir to any files in the ~/dotfiles directory specified in $files
-for file in $files; do
- echo "Moving any existing dotfiles from ~ to $olddir"
- mv ~/.$file ~/dotfiles_old/
- echo "Creating symlink to $file in home directory."
- ln -s $dir/$file ~/.$file
+# move current files and link contained files
+files=$(ls $dir)
+for name in $files; do
+ mv ~/.$name ~/dotfiles_old/
+ ln -s $dir/$name ~/.$name
done