diff options
Diffstat (limited to '.bashrc_third_party')
-rw-r--r-- | .bashrc_third_party | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.bashrc_third_party b/.bashrc_third_party index 48c1137..58cc7da 100644 --- a/.bashrc_third_party +++ b/.bashrc_third_party @@ -38,11 +38,15 @@ symlink_preferences() ( symlink_sublime_preferences() ( set -o errexit -o nounset -o pipefail - symlink_preferences "$HOME/.Sublime Text 3" "$APPDATA/Sublime Text 3/Packages/User" + symlink_preferences \ + "$HOME/.appdata/Sublime Text 3" \ + "$APPDATA/Sublime Text 3/Packages/User" ) symlink_ghc_preferences() ( set -o errexit -o nounset -o pipefail - symlink_preferences "$HOME/.GHC" "$APPDATA/ghc" + symlink_preferences \ + "$HOME/.appdata/ghc" \ + "$APPDATA/ghc" ) |